Skip to content

Commit

Permalink
Hotfix/test setup (#14)
Browse files Browse the repository at this point in the history
* switch test commands for development & github actions

* Change description for initial test
  • Loading branch information
Ifycode authored Mar 5, 2021
1 parent eddfabf commit e35a06a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
- run: npm run CI-test
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"start": "npm-run-all --parallel lint:watch",
"lint": "esw src --color",
"lint:watch": "npm run lint -- --watch",
"test": "babel-node spec/run.js",
"dev-test": "nodemon --exec babel-node spec/run.js"
"CI-test": "babel-node spec/run.js",
"test": "nodemon --exec babel-node spec/run.js"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion spec/cli.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { cli as cli } from '../src/cli';

describe('Cli function', () => {
describe('Initial test: cli function', () => {

it('should return undefined', () => {
let test = cli();
Expand Down

0 comments on commit e35a06a

Please sign in to comment.