Skip to content

Commit

Permalink
make first e2e test pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Chrisp1tv committed Mar 24, 2024
1 parent e08ba4f commit 75de0d3
Show file tree
Hide file tree
Showing 12 changed files with 1,217 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .lintstagedrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"*.{ts*,js*}": ["npm run test:unit -- --passWithNoTests"],
"*.{ts*,js*,yml}": ["npm run lint:fix"],
"*.{ts,js}": ["npm run test:unit -- --passWithNoTests"],
"*.{ts,js,yml}": ["npm run lint:fix"],
"*.{json,md,java}": "prettier --write"
}
1 change: 1 addition & 0 deletions jest.e2e.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const config: Config = {
collectCoverageFrom: ["<rootDir>/dist/**/*.(t|j)s"],
coverageDirectory: "./coverage-e2e",
testTimeout: 10_000,
setupFilesAfterEnv: ["<rootDir>/spec/e2e/support/setup.ts"],
};

export default config;
Loading

0 comments on commit 75de0d3

Please sign in to comment.