Skip to content

Commit

Permalink
fix: tests and switch back to Libs 5.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryT-CG committed Oct 11, 2024
1 parent b61f2d1 commit e76280e
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 58 deletions.
90 changes: 45 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@
"@ngrx/router-store": "^18.0.1",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"@onecx/accelerator": "^5.17.2",
"@onecx/angular-accelerator": "^5.17.2",
"@onecx/angular-auth": "^5.17.2",
"@onecx/angular-integration-interface": "^5.17.2",
"@onecx/angular-remote-components": "^5.17.2",
"@onecx/angular-testing": "^5.17.2",
"@onecx/angular-webcomponents": "^5.17.2",
"@onecx/integration-interface": "^5.17.2",
"@onecx/keycloak-auth": "^5.17.2",
"@onecx/portal-integration-angular": "^5.17.2",
"@onecx/portal-layout-styles": "^5.17.2",
"@onecx/accelerator": "5.13.0",
"@onecx/angular-accelerator": "5.13.0",
"@onecx/angular-auth": "5.13.0",
"@onecx/angular-integration-interface": "5.13.0",
"@onecx/angular-remote-components": "5.13.0",
"@onecx/angular-testing": "5.13.0",
"@onecx/angular-webcomponents": "5.13.0",
"@onecx/integration-interface": "5.13.0",
"@onecx/keycloak-auth": "5.13.0",
"@onecx/portal-integration-angular": "5.13.0",
"@onecx/portal-layout-styles": "5.13.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"file-saver": "^2.0.5",
"keycloak-angular": "^16.0.1",
Expand Down
4 changes: 2 additions & 2 deletions src/app/remotes/footer-menu/footer-menu.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,13 @@ describe('OneCXFooterMenuComponent', () => {
const menuItems = await oneCXFooterMenuHarness.getMenuItems()
expect(menuItems.length).toEqual(2)

const translatedItem = await oneCXFooterMenuHarness.getMenuItem('ws_footer_footer_contact_router')
const translatedItem = await oneCXFooterMenuHarness.getMenuItem('ws_footer_footer_contact_link')
expect(translatedItem).toBeTruthy()
expect(await translatedItem?.text()).toEqual('English Contact value')
await translatedItem?.click()
expect(router.url).toBe('/contact')

const nameItem = await oneCXFooterMenuHarness.getMenuItem('ws_footer_footer_contact_only_name_router')
const nameItem = await oneCXFooterMenuHarness.getMenuItem('ws_footer_footer_contact_only_name_link')
expect(nameItem).toBeTruthy()
expect(await nameItem?.text()).toEqual('Contact')
await nameItem?.click()
Expand Down

0 comments on commit e76280e

Please sign in to comment.