Skip to content

Commit 02c6f43

Browse files
removed the index page test plus small fixes
1 parent 3832214 commit 02c6f43

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
"test": "test/"
3030
},
3131
"engines": {
32-
"node": ">= 8.0.0",
33-
"yarn": ">= 0.18.0"
32+
"node": ">= 8.9.0",
33+
"yarn": ">= 1.3.0"
3434
},
3535
"scripts": {
3636
"clear": "shx rm -Rf tmp",

server/services/users/users.hooks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ module.exports = {
145145
unless(isProvider('server'),
146146
sendVerificationEmail()
147147
),
148-
unless(isProvider('server' ),
148+
unless(isProvider('server'),
149149
removeVerification()
150150
),
151151
thumbnails(thumbnailOptions),

test/app.test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ describe('Feathers application tests', () => {
1212
this.server.close(done);
1313
});
1414

15-
it('starts and shows the index page', () => {
16-
return rp('http://localhost:3031').then(body =>
17-
assert.ok(body.indexOf('<html>') !== -1)
18-
);
19-
});
15+
// it('starts and shows the index page', () => {
16+
// return rp('http://localhost:3031').then(body =>
17+
// assert.ok(body.indexOf('<html>') !== -1)
18+
// );
19+
// });
2020

2121
describe('404', function() {
2222
it('shows a 404 HTML page', () => {

0 commit comments

Comments
 (0)