Skip to content

Commit

Permalink
fix: test:unit script
Browse files Browse the repository at this point in the history
  • Loading branch information
cameri committed Oct 30, 2022
1 parent 4c872b1 commit 750dffa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
"db:seed": "knex seed:run",
"pretest:unit": "mkdir -p .test-reports/unit",
"test:unit": "mocha 'test/**/*.spec.ts'",
"test:unit:watch": "npm run test:unit -- --min --watch --watch-files src/**/*,test/**/*",
"cover:unit": "nyc --report-dir .coverage/unit npm run --ignore-scripts test:unit",
"docker:build": "docker build -t nostr-ts-relay .",
"pretest:integration": "mkdir -p .test-reports/integration",
"test:integration": "cucumber-js",
"cover:integration": "nyc --report-dir .coverage/integration npm run --ignore-scripts test:integration",
"test:unit:watch": "npm run test:unit -- --min --watch --watch-files src/**/*,test/**/*",
"cover:unit": "nyc --report-dir .coverage/unit npm run --ignore-scripts test:unit -- --reporter=false",
"docker:build": "docker build -t nostr-ts-relay .",
"predocker:compose:up": "[ -d \"$HOME/.nostr\" ] || mkdir -p $HOME/.nostr",
"docker:compose:start": "docker compose up --build",
"docker:compose:stop": "docker compose down",
Expand Down

0 comments on commit 750dffa

Please sign in to comment.