Skip to content

Commit fb51148

Browse files
committed
Fixing unit tests to use npm test:unit instead of just npm test.
1 parent 95b1572 commit fb51148

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/dotnet-core-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
8383
# Run Jest tests for time-planning-pn plugin
8484
echo "Running Jest tests for time-planning-pn plugin..."
85-
npm test -- --testPathPattern=time-planning-pn --coverage --collectCoverageFrom='src/app/plugins/modules/time-planning-pn/**/*.ts' --coveragePathIgnorePatterns='\.spec\.ts$'
85+
npm test:unit -- --testPathPattern=time-planning-pn --coverage --collectCoverageFrom='src/app/plugins/modules/time-planning-pn/**/*.ts' --coveragePathIgnorePatterns='\.spec\.ts$'
8686
pn-test:
8787
needs: build
8888
runs-on: ubuntu-latest

.github/workflows/dotnet-core-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
7777
# Run Jest tests for time-planning-pn plugin
7878
echo "Running Jest tests for time-planning-pn plugin..."
79-
npm test -- --testPathPattern=time-planning-pn --coverage --collectCoverageFrom='src/app/plugins/modules/time-planning-pn/**/*.ts' --coveragePathIgnorePatterns='\.spec\.ts$'
79+
npm test:unit -- --testPathPattern=time-planning-pn --coverage --collectCoverageFrom='src/app/plugins/modules/time-planning-pn/**/*.ts' --coveragePathIgnorePatterns='\.spec\.ts$'
8080
pn-test:
8181
needs: build
8282
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)