Files
linea-monorepo/e2e/tsconfig.json
Victorien Gauch 215b60c9f0 Feat(#133): run e2e tests in parallel (#164)
* feat: run e2e tests in paralell + refactor test setup

* fix: open handle issue

* fix: sequencer finalized tag test issue + clean l2.spec tests

* fix: refactor config structure

* fix: genesis path issue

* fix: pnpm lock file issue

* fix: make each test run concurrently

* fix: remove nested describes in tests

* fix: refactor coordinator tests + add global L2 traffic generation

* fix: change l2 genesis file for getting whale accounts + refactor utils function

* fix: refactor coordinator restart util function

* fix: remove conflation e2e tests

* fix: add environment variable in e2e test ci workflowk

* fix: coordinator restart test issue

* fix: instanciate account manager only once per test file

* fix: add restart option to zkbesu shomei and postman in docker compose file

* fix: remove getAndIncreaseFeeData function and unsed utils functions

* fix: increase messaging L2 to l1 timeout
2024-10-15 19:26:23 +02:00

23 lines
505 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"types": ["node", "jest"],
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2021",
"baseUrl": "./",
"outDir": "./dist",
"moduleResolution": "node",
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"strictPropertyInitialization": false,
},
"references": [
{
"path": "../sdk"
}
],
"exclude": ["node_modules", "dist"],
}