Skip to content

Commit 54fb967

Browse files
committed
chore: rollback test changes
1 parent bd9a1d5 commit 54fb967

File tree

8 files changed

+4
-75
lines changed

8 files changed

+4
-75
lines changed

.github/workflows/deploy_pr.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,6 @@ jobs:
4545
- name: Run functional tests
4646
run: npm run test:functional
4747

48-
check-remaining-data-after-tests:
49-
runs-on: ubuntu-latest
50-
steps:
51-
- uses: actions/checkout@v3
52-
- uses: actions/setup-node@v3
53-
with:
54-
node-version: 19
55-
56-
- name: Install npm dependencies
57-
run: npm ci
58-
59-
- name: Check remaining data after tests
60-
run: npm run test:check-remaining-data
61-
6248
publish-gpr:
6349
needs: [test-unit, test-integration, test-functional]
6450
runs-on: ubuntu-latest

jest.config.check-remaining-data.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

jest.config.functional.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import config from './jest.config'
22

3-
config.modulePathIgnorePatterns = [
4-
'<rootDir>/test/unit',
5-
'<rootDir>/test/integration',
6-
'<rootDir>/test/check-remaining-data'
7-
]
3+
config.modulePathIgnorePatterns = ['<rootDir>/test/unit', '<rootDir>/test/integration']
84
console.log('RUNNING FUNCTIONAL TESTS')
95

106
export default config

jest.config.integration.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import config from './jest.config'
22

3-
config.modulePathIgnorePatterns = [
4-
'<rootDir>/test/unit',
5-
'<rootDir>/test/functional',
6-
'<rootDir>/test/check-remaining-data'
7-
]
3+
config.modulePathIgnorePatterns = ['<rootDir>/test/unit', '<rootDir>/test/functional']
84
console.log('RUNNING INTEGRATION TESTS')
95

106
export default config

jest.config.unit.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import config from './jest.config'
22

3-
config.modulePathIgnorePatterns = [
4-
'<rootDir>/test/integration',
5-
'<rootDir>/test/functional',
6-
'<rootDir>/test/check-remaining-data'
7-
]
3+
config.modulePathIgnorePatterns = ['<rootDir>/test/integration', '<rootDir>/test/functional']
84
delete config.globalSetup
95
delete config.testTimeout
106
console.log('RUNNING UNIT TESTS')

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"test:unit": "jest -c jest.config.unit.ts",
1414
"test:integration": "jest -c jest.config.integration.ts",
1515
"test:functional": "jest -c jest.config.functional.ts",
16-
"test:check-remaining-data": "jest -c jest.config.check-remaining-data.ts",
1716
"test:coverage": "jest --coverage -c jest.config.ts",
1817
"test:coverage:check": "jest --coverage --ci --config jest.config.ts",
1918
"lint": "npm run lint:eslint && npm run lint:prettier",

test/check-remaining-data/check-remaining-data.spec.ts

Lines changed: 0 additions & 33 deletions
This file was deleted.

tsconfig.tests.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
"jest.config.integration.ts",
1010
"jest.config.ts",
1111
"jest.config.unit.ts",
12-
"jest.config.functional.ts",
13-
"jest.config.check-remaining-data.ts"
12+
"jest.config.functional.ts"
1413
],
1514
"exclude": ["node_modules", "dist"]
1615
}

0 commit comments

Comments
 (0)