Mocha tests now use ES6
This commit is contained in:
@ -11,7 +11,7 @@
|
|||||||
"prestart-production": "bower cache clean && bower install && gulp build && npm run build-production",
|
"prestart-production": "bower cache clean && bower install && gulp build && npm run build-production",
|
||||||
"start-production": "node pm2Start",
|
"start-production": "node pm2Start",
|
||||||
"lint": "eslint --ext=.js,.jsx .",
|
"lint": "eslint --ext=.js,.jsx .",
|
||||||
"test": "mocha"
|
"test": "mocha --compilers js:babel/register"
|
||||||
},
|
},
|
||||||
"license": "(BSD-3-Clause AND CC-BY-SA-4.0)",
|
"license": "(BSD-3-Clause AND CC-BY-SA-4.0)",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
var request = require('supertest');
|
var request = require('supertest');
|
||||||
var app = require('../server/server.js');
|
var app = require('../server/server.js');
|
||||||
|
|
||||||
describe('#ROUTES', function() {
|
describe('#ROUTES', function () {
|
||||||
|
|
||||||
describe('GET /', function () {
|
describe('GET /', function () {
|
||||||
it('should return 200 OK', function (done) {
|
it('should return 200 OK', (done) => {
|
||||||
request(app)
|
request(app)
|
||||||
.get('/')
|
.get('/')
|
||||||
.expect(200, done);
|
.expect(200, done);
|
||||||
@ -12,7 +12,7 @@ describe('#ROUTES', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe('GET /signin', function () {
|
describe('GET /signin', function () {
|
||||||
it('should return 200 OK', function (done) {
|
it('should return 200 OK', (done) => {
|
||||||
request(app)
|
request(app)
|
||||||
.get('/signin')
|
.get('/signin')
|
||||||
.expect(200, done);
|
.expect(200, done);
|
||||||
@ -20,7 +20,7 @@ describe('#ROUTES', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe('GET /email-signup', function () {
|
describe('GET /email-signup', function () {
|
||||||
it('should return 200 OK', function (done) {
|
it('should return 200 OK', (done) => {
|
||||||
request(app)
|
request(app)
|
||||||
.get('/email-signup')
|
.get('/email-signup')
|
||||||
.expect(200, done);
|
.expect(200, done);
|
||||||
@ -28,15 +28,15 @@ describe('#ROUTES', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe('GET /random-url', function () {
|
describe('GET /random-url', function () {
|
||||||
it('should return 302', function (done) {
|
it('should return 302', (done) => {
|
||||||
request(app)
|
request(app)
|
||||||
.get('/reset')
|
.get('/reset')
|
||||||
.expect(302, done);
|
.expect(302, done);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('Get /camperName', function () {
|
describe('GET /camperName', function () {
|
||||||
it('should return 200', function (done) {
|
it('should return 200', (done) => {
|
||||||
request(app)
|
request(app)
|
||||||
.get('/terakilobyte')
|
.get('/terakilobyte')
|
||||||
.expect(200, done);
|
.expect(200, done);
|
||||||
|
Reference in New Issue
Block a user