mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 20:27:58 -05:00
* 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
23 lines
505 B
JSON
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"],
|
|
}
|