Skip to content

Commit

Permalink
Updating tests and ci for updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalrymple committed Oct 21, 2023
1 parent d228597 commit db503da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ test:e2e:core:

test:e2e:rest:
extends: .test:e2e:base
image: mcr.microsoft.com/playwright:v1.35.1-focal
image: mcr.microsoft.com/playwright:v1.39.0-focal
before_script:
# reinstall swc due to missing binding for ubuntu image
- yarn add @swc/core
Expand Down
4 changes: 2 additions & 2 deletions packages/core/test/e2e/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ describe('API Map', () => {
'UserSSHKeys',
];
// eslint-disable-next-line
const map: Record<string, unknown> = await import('../../dist/map.json');
const map = await import('../../dist/map.json');

expect(map).toBeInstanceOf(Object);
expect(map).toBeObject();
expect(Object.keys(map)).toIncludeAllMembers(keys);
});
});

0 comments on commit db503da

Please sign in to comment.