Skip to content

Commit

Permalink
Reorder test files
Browse files Browse the repository at this point in the history
  • Loading branch information
niekcandaele committed Mar 22, 2019
1 parent 25d0ac4 commit 2320b86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions test/routes-bans.test.js → test/bans/routes-bans.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ const faker = require('faker');
const chai = require('chai');
const chaiHttp = require('chai-http');

const mock = require('./mock');
const mock = require('../mock');

// Start the server
const server = require('../bin/www');
const server = require('../../bin/www');

const validSteamId = '76561198028175941';
const should = chai.should(); // eslint-disable-line no-unused-vars

const {
reasons,
games,
} = require('../config/constants');
} = require('../../config/constants');

const {
sequelize,
} = require('../models');
} = require('../../models');

chai.use(chaiHttp);

Expand Down
2 changes: 1 addition & 1 deletion test/pages.test.js → test/pages/pages.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const chai = require('chai');
const chaiHttp = require('chai-http');

// Start the server
const server = require('../bin/www');
const server = require('../../bin/www');

const should = chai.should(); // eslint-disable-line no-unused-vars

Expand Down

0 comments on commit 2320b86

Please sign in to comment.