Skip to content

Commit

Permalink
test(e2e): Increase delay time
Browse files Browse the repository at this point in the history
  • Loading branch information
javierbrea committed Feb 24, 2022
1 parent dabd2f2 commit e09a936
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Test unit
run: npm run test:unit
- name: Test E2E
run: npm run test:e2e:debug
run: npm run test:e2e:ci
id: test-e2e
- name: Upload test results
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion test-e2e/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ module.exports = {

// The glob patterns Jest uses to detect test files
testMatch: ["**/test/**/*.spec.js"],
testMatch: ["**/test/**/parallel.spec.js"],
// testMatch: ["**/test/**/parallel.spec.js"],
};
6 changes: 3 additions & 3 deletions test-e2e/test/parallel.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runParallelSpecsTests(
cypressVersion: "latest",
pluginFile: "parallel-preprocessor-babel-config",
specs: "parallel-failing",
delay: 2000,
delay: 5000,
specsResults: [
{
logBefore: true,
Expand Down Expand Up @@ -88,7 +88,7 @@ runParallelSpecsTests(
cypressVersion: "8",
pluginFile: "parallel-preprocessor-babel-config",
specs: "parallel-failing",
delay: 2000,
delay: 5000,
specsResults: [
{
logBefore: true,
Expand Down Expand Up @@ -160,7 +160,7 @@ runParallelSpecsTests(
cypressVersion: "latest",
pluginFile: "parallel-preprocessor-babel-config",
specs: "parallel-failing",
delay: 2000,
delay: 5000,
specsResults: [
{
logBefore: true,
Expand Down

0 comments on commit e09a936

Please sign in to comment.