From c6ec20ae95b4df1b217008b8db28eaefab80ba71 Mon Sep 17 00:00:00 2001 From: Mihovil Ilakovac Date: Thu, 28 Nov 2024 16:00:19 +0100 Subject: [PATCH] Update details --- .github/workflows/e2e-tests.yml | 2 -- .gitignore | 1 + e2e-tests/.gitignore | 2 +- e2e-tests/playwright.config.ts | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 84d724d..57f6418 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -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 diff --git a/.gitignore b/.gitignore index 62dfbed..7baf587 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /.env.server /.env.client /node_modules +.DS_Store \ No newline at end of file diff --git a/e2e-tests/.gitignore b/e2e-tests/.gitignore index 94976ce..581576b 100644 --- a/e2e-tests/.gitignore +++ b/e2e-tests/.gitignore @@ -2,4 +2,4 @@ /test-results/ /.cache/ /node_modules/ -prisma/ \ No newline at end of file +prisma/ diff --git a/e2e-tests/playwright.config.ts b/e2e-tests/playwright.config.ts index eddb423..e2483b7 100644 --- a/e2e-tests/playwright.config.ts +++ b/e2e-tests/playwright.config.ts @@ -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. */