Skip to content

Commit

Permalink
chore: fix test_coverage (#803)
Browse files Browse the repository at this point in the history
Signed-off-by: Carina Ursu <[email protected]>
  • Loading branch information
ursucarina authored Jul 26, 2023
1 parent 8872536 commit 36311eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"storybook": "start-storybook -p 6006",
"test": "NODE_ENV=test BASE_URL=/console jest",
"test:clear": "jest --clearCache",
"test-coverage": "NODE_ENV=test BASE_URL=/console jest --coverage",
"test-coverage": "NODE_OPTIONS='--max-old-space-size=8192' NODE_ENV=test BASE_URL=/console jest --coverage",
"test-release": "npx semantic-release --debug --no-ci --test-run"
},
"husky": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('EntityDetails', () => {
// check text for header
await waitFor(() =>
expect(
within(screen.getByText(`${id.domain} / ${id.name}`)),
within(screen.getByText(`${id.domain} / ${id.name}`, { exact: false })),
).toBeInTheDocument(),
);

Expand Down

0 comments on commit 36311eb

Please sign in to comment.