Skip to content

Commit

Permalink
PLAT-2100 PLAT-2209: Re-enable tests after stories marked as done
Browse files Browse the repository at this point in the history
  • Loading branch information
jentfoo committed Nov 4, 2024
1 parent a2b0363 commit 0eebf22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions abacus-and-api-integration-tests/e2e/abacus-app.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,7 @@ test.describe('<Login/>', () => {
})
});

// TODO: Uncomment after fixing the PLAT-2209 bug which leads to assertion failure
test.skip('Login succeeds on the Entity Details page, actual data is loaded', async ({ page }) => {
test('Login succeeds on the Entity Details page, actual data is loaded', async ({ page }) => {
await authorize(page, "/entitlements")

await Promise.all([
Expand Down
3 changes: 1 addition & 2 deletions abacus-and-api-integration-tests/e2e/backend-api.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,7 @@ test.describe('API:', () => {
})
})

// TODO: skipped till fixing PLAT-2100 (there is no entity existence validation for now, so 200 is returned)
test.skip('Entitlements request fails when use non-existed EntityID', async ({authority, attributeName,attributeValue}) => {
test('Entitlements request fails when use non-existed EntityID', async ({authority, attributeName,attributeValue}) => {
const entitlementPayload = `${authority}/attr/${attributeName}/value/${attributeValue}`;
const nonExistedEntityId = "x-x-x-x"
const createAttributeResponse = await apiContext.post(`http://localhost:65432/api/entitlements/entitlements/${nonExistedEntityId}`, {
Expand Down

0 comments on commit 0eebf22

Please sign in to comment.