Skip to content

Commit 8147db5

Browse files
committed
hmmmmmmm
1 parent 6201a47 commit 8147db5

33 files changed

+208
-292
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ export PGUSER="postgresuser"
99
export PGPASSWORD="handkerchief-break-popular-population"
1010
export PGDATABASE="test"
1111
export PGPORT="25432"
12-
export DEBUG="testcontainers*"
12+
export DEBUG="testcontainers:pull"

.github/workflows/tests.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,7 @@ jobs:
2121
- name: Check if barrels are up to date
2222
run: yarn ctix && [ -z "$(git status --porcelain)" ]
2323
- run: yarn test --coverage
24-
- run: yarn integration --coverage
2524
- uses: codecov/codecov-action@v5
2625
with:
2726
token: ${{ secrets.CODECOV_TOKEN }}
28-
directory: ./coverage
29-
flags: unittest
30-
fail_ci_if_error: true
31-
- uses: codecov/codecov-action@v5
32-
with:
33-
token: ${{ secrets.CODECOV_TOKEN }}
34-
directory: ./coverage-integration
35-
flags: integration
3627
fail_ci_if_error: true

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,9 @@ node_modules/
3838
!**/.yarn/versions
3939
**/.pnp.*
4040

41-
.nx/cache
42-
.nx/workspace-data
43-
4441
# Entity-specific ignores
4542

4643
build/
4744
coverage/
4845
coverage-integration/
49-
doc/
46+
doc/

integration-setup.js

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

integration-teardown.js

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

jest-integration.config.js

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

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ module.exports = {
99
'!**/__*test*__/**',
1010
],
1111
coverageProvider: 'v8',
12-
testMatch: ['**/__tests__/**/*-test.ts'],
12+
testMatch: ['**/*-test.ts'],
1313
};

nx.json

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

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
"lint-fix": "yarn lint --fix",
1313
"test": "yarn build --noCheck && yarn node --env-file=.env $(yarn bin jest)",
1414
"test:all": "yarn test",
15-
"integration": "yarn test --config jest-integration.config.js --runInBand",
16-
"integration:all": "yarn integration",
1715
"prepack": "yarn build",
1816
"ctix": "ctix build && resources/prepend-barrels.sh",
1917
"typedoc": "yarn build && typedoc"
@@ -35,7 +33,6 @@
3533
"lerna": "^8.2.2",
3634
"prettier": "^3.5.3",
3735
"prettier-plugin-organize-imports": "^4.1.0",
38-
"testcontainers": "^11.0.3",
3936
"typedoc": "^0.28.4",
4037
"typescript": "^5.8.3"
4138
},

packages/entity-cache-adapter-local-memory/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
"clean": "yarn build --clean",
1414
"lint": "yarn run --top-level eslint src",
1515
"lint-fix": "yarn lint --fix",
16-
"test": "yarn test:all --rootDir $(pwd)",
17-
"integration": "yarn integration:all --rootDir $(pwd)"
16+
"test": "yarn test:all --rootDir $(pwd)"
1817
},
1918
"engines": {
2019
"node": ">=16"

0 commit comments

Comments
 (0)