Skip to content

Commit

Permalink
Update details
Browse files Browse the repository at this point in the history
  • Loading branch information
infomiho committed Nov 28, 2024
1 parent 0e0d6fc commit c6ec20a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ jobs:
- name: Install Wasp
run: |
curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v ${{ env.WASP_VERSION }}
# Need to Act to run
export PATH=$PATH:/root/.local/bin
- name: Cache global node modules
uses: actions/cache@v4
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/.env.server
/.env.client
/node_modules
.DS_Store
2 changes: 1 addition & 1 deletion e2e-tests/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/test-results/
/.cache/
/node_modules/
prisma/
prisma/
2 changes: 1 addition & 1 deletion e2e-tests/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default defineConfig({
testDir: "./tests",
reporter: process.env.CI
? [["github"], ["html", { outputFolder: "./test-results" }]]
: [["html", { open: "never" }]],
: [["list"]],
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
Expand Down

0 comments on commit c6ec20a

Please sign in to comment.