We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a860cf4 commit 072f731Copy full SHA for 072f731
.circleci/config.yml
@@ -65,6 +65,13 @@ jobs:
65
- run:
66
name: Build
67
command: npm run build
68
+ - run:
69
+ name: Integration
70
+ environment:
71
+ JEST_JUNIT_OUTPUT_NAME: integration-results
72
+ command: |
73
+ export TESTFILES=$(circleci tests glob "test/integration/*.test.js" | circleci tests split --split-by=timings)
74
+ $(npm bin)/jest ${TESTFILES} --reporters="default" --reporters="jest-junit" --runInBand
75
- store_artifacts:
76
path: coverage
77
- store_test_results:
0 commit comments