Move tests to test/
Alan Pearce alan@alanpearce.eu
Sun, 18 Jun 2017 09:27:11 +0200
2 files changed, 3 insertions(+), 3 deletions(-)
M package.json → package.json
@@ -16,8 +16,8 @@ "scripts": { "dev:assist": "auto-install --yarn", "format": "prettier-standard 'src/**/*.js'", "precommit": "lint-staged", - "test": "ava '**/*.test.js'", - "test:watch": "ava --watch '**/*.test.js'" + "test": "ava 'test/**/*.test.js'", + "test:watch": "ava --watch 'test/**/*.test.js'" }, "devDependencies": { "auto-install": "^1.7.4",
M src/index.test.js → test/index.test.js
@@ -1,7 +1,7 @@ const test = require('ava') const request = require('supertest') -const app = require('./index.js') +const app = require('../src/index.js') test(t => request(app.listen())