Skip to content

Commit 117d0a1

Browse files
authored
Merge pull request #25 from nocode-js/develop
ci: tests.
2 parents 566c970 + e1387fe commit 117d0a1

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.github/workflows/demos.sh

+2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ cd "$SCRIPT_DIR/../../demos/angular-app"
77
yarn install
88
yarn build
99
yarn prettier
10+
yarn test:single
1011

1112
cd "$SCRIPT_DIR/../../demos/react-app"
1213
yarn install
1314
yarn build
1415
yarn eslint
1516
yarn prettier
17+
yarn test:single

.github/workflows/packages.sh

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ yarn install
88
yarn build
99
yarn eslint
1010
yarn prettier
11+
yarn test:single

demos/angular-app/src/app/app.component.spec.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import { TestBed } from '@angular/core/testing';
2+
import { SequentialWorkflowDesignerModule } from 'sequential-workflow-designer-angular';
23
import { AppComponent } from './app.component';
34

45
describe('AppComponent', () => {
56
beforeEach(async () => {
67
await TestBed.configureTestingModule({
7-
declarations: [AppComponent]
8+
declarations: [AppComponent],
9+
imports: [SequentialWorkflowDesignerModule]
810
}).compileComponents();
911
});
1012

demos/react-app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"scripts": {
2424
"start": "react-scripts start",
2525
"build": "react-scripts build",
26-
"test": "react-scripts test",
27-
"test:single": "react-scripts test --watchAll=false",
26+
"test": "react-scripts test --transformIgnorePatterns \"node_modules/(?!sequential-workflow-model)/\"",
27+
"test:single": "yarn test --watchAll=false",
2828
"eject": "react-scripts eject",
2929
"prettier": "prettier --check ./src",
3030
"prettier:fix": "prettier --write ./src",

react/jest.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@ module.exports = {
88
testEnvironment: 'jsdom',
99
moduleNameMapper: {
1010
'^sequential-workflow-designer': path.join(__dirname, '../designer/src'),
11-
}
11+
},
12+
transformIgnorePatterns: [
13+
'node_modules/(?!sequential-workflow-model)'
14+
],
1215
};

0 commit comments

Comments
 (0)