Skip to content

Commit

Permalink
Remove wildcard for cypress tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jamakase committed Mar 3, 2021
1 parent 41dcea3 commit 209ef99
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
run: ./tools/bin/acceptance_test.sh

- name: Run End-to-End Frontend Tests
# if: success() && github.ref == 'refs/heads/master'
if: success() && github.ref == 'refs/heads/master'
run: ./tools/bin/e2e_test.sh

- name: Push Core Docker Images
Expand Down
7 changes: 6 additions & 1 deletion airbyte-e2e-testing/cypress.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"baseUrl": "http://localhost:3000",
"testFiles": ["onboarding.spec.js", "**/*.*"]
"testFiles": [
"onboarding.spec.js",
"connection.spec.js",
"destination.spec.js",
"source.spec.js"
]
}

0 comments on commit 209ef99

Please sign in to comment.