Skip to content

Commit 576e866

Browse files
committed
Fixed lerna task for prisma migrate
1 parent 3cd0bb0 commit 576e866

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"lint:staged": "eslint",
1313
"test": "npx lerna run test -- --passWithNoTests",
1414
"test:ci": "npx lerna run test --concurrency=1 -- --passWithNoTests --forceExit",
15-
"test:integration": "npx lerna run test:integration -- --passWithNoTests --forceExit",
15+
"test:integration": "npx lerna run test:integration --concurrency=1 -- --passWithNoTests --forceExit",
1616
"test:watch": "npx lerna run test:watch",
17-
"migrate": "npx lerna run prisma-migrate",
17+
"prisma:migrate": "npx lerna run prisma:migrate",
1818
"prisma:generate": "npx lerna run prisma:generate",
1919
"commit": "cz",
2020
"publish:canary": "npx lerna publish prerelease --no-private --exact --yes --canary --preid develop --dist-tag latest --loglevel verbose --force-git-tag --force-publish"

packages/sequencer/test/settlement/Settlement.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,6 @@ export const settlementTestFn = (
256256
}
257257

258258
beforeAll(async () => {
259-
log.setLevel("DEBUG");
260-
261259
appChain = setupAppChain();
262260

263261
await appChain.start(

0 commit comments

Comments
 (0)