Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
hubsmoke committed Jan 25, 2024
1 parent 27f6bf7 commit 5b92ff0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-repo-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
fi
build-and-push:
needs: build-and-test
# needs: build-and-test
name: Build and deploy
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
{
"type": "node",
"request": "attach",
"name": "Mocha Tests",
"name": "Docker: Mocha Tests",
"restart": true,
"port": 9227,
"address": "localhost",
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app",
"remoteRoot": "/app"
},
{
"type": "node",
Expand Down
2 changes: 1 addition & 1 deletion desci-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"lint-prettier": "prettier --config .prettierrc --list-different '{src,test}/**/*.{ts,js,css,scss}'",
"prettier": "prettier --config .prettierrc --write './**/*.{ts,js,css,scss,json,md}'",
"test:destructive": "mocha --colors --require ts-node/register 'test/integration/**/*.test.ts' --timeout 20000 --exit",
"test:destructive:debug": "yarn test:destructive --debug=0.0.0.0:9227",
"test:destructive:debug": "yarn test:destructive --inspect=0.0.0.0:9227",
"test": "yarn docker:test && docker-compose --file ../docker-compose.test.yml --compatibility down",
"coverage:destructive": "nyc --all --parser-plugins='[\"importAssertions\"]' -r lcov -e .ts -x \"*.test.ts\" npm run test:destructive",
"coverage:destructive:debug": "nyc --all --parser-plugins='[\"importAssertions\"]' -r lcov -e .ts -x \"*.test.ts\" npm run test:destructive:debug",
Expand Down

0 comments on commit 5b92ff0

Please sign in to comment.