Skip to content

Commit

Permalink
test: use pre-seed instead of separate sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Oct 10, 2023
1 parent 92f8013 commit c9b2262
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test:ci": "lerna run test:ci",
"test:e2e": "lerna run test:e2e",
"test:integration:ui": "lerna run integration-test:ui",
"test:integration:api": "lerna run integration-test:api",
"test:integration:api": "lerna run integration-test:api:pre-seed && lerna run integration-test:api",
"dev": "lerna run dev",
"build": "lerna run build",
"start": "lerna run start",
Expand Down
3 changes: 2 additions & 1 deletion packages/integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"license": "MIT",
"scripts": {
"postinstall": "cd src/playbook && npm install",
"integration-test:api": "./run.sh",
"integration-test:api:pre-seed": "jest --verbose --testPathPattern=tokens.test.ts && jest --verbose --testPathPattern=deposit.test.ts",
"integration-test:api": "jest --verbose --testPathPattern=common && jest --verbose --testPathPattern=transactions",
"integration-test:ui": "npx playwright test",
"block-explorer:start": "docker-compose -f docker-compose.yaml up\n",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-pattern 'repos' --ignore-pattern 'git add .'"
Expand Down
7 changes: 0 additions & 7 deletions packages/integration-tests/run.sh

This file was deleted.

0 comments on commit c9b2262

Please sign in to comment.