Skip to content

Commit

Permalink
Rename ava to test
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianrath committed Apr 26, 2022
1 parent 4c902cc commit e0c8614
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
run: npm run lint

- name: 🧪 Run Tests
run: npm run ava
run: npm run test

- name: 📰 Coveralls GitHub Action
uses: coverallsapp/github-action@v1.1.2
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:


- name: 🧪 Run Tests
run: npm run ava
run: npm run test

- name: 📰 Coveralls GitHub Action
uses: coverallsapp/github-action@v1.1.2
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
run: npm ci

- name: 🧪 Run Tests
run: npm run ava
run: npm run test

- name: 📰 Coveralls GitHub Action
uses: coverallsapp/github-action@v1.1.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ $ snow log
$ git clone https://github.com/Snowtrack/snowfs.git
$ cd snowfs
$ npm install
$ npm run ava
$ npm run test
```

3. To build a **production build including the CLI**, execute the commands above, and continue with the commands below:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"build": "pkg dist/main.js",
"snowfs": "node -r ts-node/register main.ts",
"benchmark": "cross-env NODE_ENV=benchmark node --require ts-node/register benchmark/snowfs-vs-git.ts",
"ava": "nyc --reporter=html --reporter=lcov --reporter=text ava --timeout 900s --verbose --serial --fail-fast --color true",
"test": "nyc --reporter=html --reporter=lcov --reporter=text ava --timeout 900s --verbose --serial --fail-fast --color true",
"docs": "typedoc --out docs src --theme ./node_modules/typedoc-neo-theme/bin/default",
"prepublishOnly": "npm run clean && npm run tsc && npm run ava",
"prepublishOnly": "npm run clean && npm run tsc && npm run test",
"lint": "eslint --cache \"**/*.{ts,tsx}\""
},
"ava": {
Expand Down

0 comments on commit e0c8614

Please sign in to comment.