Merge pull request #1746 from ahstro/es6-tests

Mocha tests now use ES6
pull/1761/head
Berkeley Martinez 2015-08-14 01:52:35 -07:00
commit a99a1a50bd
2 changed files with 8 additions and 8 deletions

View File

@ -11,7 +11,7 @@
"prestart-production": "bower cache clean && bower install && gulp build && npm run build-production",
"start-production": "node pm2Start",
"lint": "eslint --ext=.js,.jsx .",
"test": "mocha"
"test": "mocha --compilers js:babel/register"
},
"license": "(BSD-3-Clause AND CC-BY-SA-4.0)",
"contributors": [

View File

@ -1,10 +1,10 @@
var request = require('supertest');
var app = require('../server/server.js');
describe('#ROUTES', function() {
describe('#ROUTES', function () {
describe('GET /', function () {
it('should return 200 OK', function (done) {
it('should return 200 OK', (done) => {
request(app)
.get('/')
.expect(200, done);
@ -12,7 +12,7 @@ describe('#ROUTES', function() {
});
describe('GET /signin', function () {
it('should return 200 OK', function (done) {
it('should return 200 OK', (done) => {
request(app)
.get('/signin')
.expect(200, done);
@ -20,7 +20,7 @@ describe('#ROUTES', function() {
});
describe('GET /email-signup', function () {
it('should return 200 OK', function (done) {
it('should return 200 OK', (done) => {
request(app)
.get('/email-signup')
.expect(200, done);
@ -28,15 +28,15 @@ describe('#ROUTES', function() {
});
describe('GET /random-url', function () {
it('should return 302', function (done) {
it('should return 302', (done) => {
request(app)
.get('/reset')
.expect(302, done);
});
});
describe('Get /camperName', function () {
it('should return 200', function (done) {
describe('GET /camperName', function () {
it('should return 200', (done) => {
request(app)
.get('/terakilobyte')
.expect(200, done);