diff options
author | Alan Pearce | 2017-06-18 09:27:11 +0200 |
---|---|---|
committer | Alan Pearce | 2017-06-18 09:27:11 +0200 |
commit | 3bda5fcfb7a23619ba66bef029d89bbd18d2c915 (patch) | |
tree | 7682f34d6f425592abb1e6d9e124846772bf0f85 /src | |
parent | 553a9f2f376a9d489e9096386ffec5b7732aa5e3 (diff) | |
download | homestead-3bda5fcfb7a23619ba66bef029d89bbd18d2c915.tar.lz homestead-3bda5fcfb7a23619ba66bef029d89bbd18d2c915.tar.zst homestead-3bda5fcfb7a23619ba66bef029d89bbd18d2c915.zip |
Move tests to test/
Diffstat (limited to 'src')
-rw-r--r-- | src/index.test.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/index.test.js b/src/index.test.js deleted file mode 100644 index 2c11d65..0000000 --- a/src/index.test.js +++ /dev/null @@ -1,12 +0,0 @@ -const test = require('ava') -const request = require('supertest') - -const app = require('./index.js') - -test(t => - request(app.listen()) - .get('/') - .expect(200) - .expect(/hello world/) - .then(() => t.pass()) -) |