Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactoring e2e controller tests #1208

Merged
merged 30 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2acdfc0
remove all controller specs -> new e2e tests are comming
cfaur09 Feb 23, 2024
31b3d06
remove graphql e2e tests
cfaur09 Feb 23, 2024
d06a455
remove warm
cfaur09 Feb 23, 2024
2f8757e
resolve e2e action
cfaur09 Feb 23, 2024
8bf10fc
fix_2
cfaur09 Feb 23, 2024
710373d
remove graph action
cfaur09 Feb 23, 2024
7e43d56
remove also services e2e tests -> now we have unit tests
cfaur09 Feb 23, 2024
d84779e
remove api checker
cfaur09 Feb 23, 2024
196e433
include Pipes Verification
cfaur09 Feb 23, 2024
b909f26
add accounts controller e2e tests
cfaur09 Feb 23, 2024
edec955
update path
cfaur09 Feb 23, 2024
fd39a33
check dependencies
cfaur09 Feb 23, 2024
4f2f294
revert
cfaur09 Feb 23, 2024
5cf2363
add configModule
cfaur09 Feb 23, 2024
b5651b0
logs
cfaur09 Feb 23, 2024
51d5e79
fix_2
cfaur09 Feb 23, 2024
26379be
fix_3
cfaur09 Feb 23, 2024
a36d5b3
add jest-unit-config file
cfaur09 Feb 26, 2024
bac6b72
remove integration action
cfaur09 Feb 26, 2024
e0bfa54
update accounts controller
cfaur09 Feb 26, 2024
4f14a8d
add more tests
cfaur09 Feb 26, 2024
a976ea2
add blocks.controller.spec.ts
cfaur09 Feb 26, 2024
6901cac
change directory
cfaur09 Feb 26, 2024
5a0f7f4
add delegation.controller.spec.ts
cfaur09 Feb 26, 2024
9a92eae
remap import
cfaur09 Feb 26, 2024
d4f8fe3
add identities.controller.spec.ts
cfaur09 Feb 26, 2024
a4c280c
remove openHandles
cfaur09 Feb 26, 2024
db179b2
add miniblocks.controller.spec.ts
cfaur09 Feb 26, 2024
af9a8fc
add network.controller.spec.ts
cfaur09 Feb 26, 2024
c1d290a
fix after review
cfaur09 Feb 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 0 additions & 74 deletions .github/workflows/integration.graph.test.yml

This file was deleted.

84 changes: 0 additions & 84 deletions .github/workflows/integration.tests.yml

This file was deleted.

71 changes: 71 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "npm run copy-mainnet-config & nest build & jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --forceExit --detectOpenHandles",
"test:cov": "jest --coverage --forceExit --detectOpenHandles --config ./src/test/jest-unit-config.json",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./src/test/jest-e2e.json --forceExit --maxWorkers=4",
"test:e2e:warm": "npm run copy-e2e-mainnet-config & nest build & jest --config ./src/test/jest-e2e-warm.json --forceExit",
Expand Down Expand Up @@ -146,6 +146,8 @@
"yup": "^0.32.11"
},
"devDependencies": {
"@automock/adapters.nestjs": "^2.1.0",
"@automock/jest": "^2.1.0",
"@nestjs/cli": "10.1.17",
"@nestjs/schematics": "10.0.2",
"@nestjs/testing": "10.2.4",
Expand Down
52 changes: 0 additions & 52 deletions src/test/integration/api/accounts.api-spec.ts

This file was deleted.

54 changes: 0 additions & 54 deletions src/test/integration/api/blocks.api-spec.ts

This file was deleted.

Loading
Loading