mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-27 07:41:24 +00:00
Reload fixtures for tests and finish testing home
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
/* global before */
|
||||
/* jshint maxlen: 200 */
|
||||
/* global afterEach, before */
|
||||
/* jshint maxlen: false, maxstatements: false */
|
||||
'use strict';
|
||||
|
||||
var config = require('../../config/test.json');
|
||||
var createNavigator = require('./helper/navigate');
|
||||
var loadFixtures = require('pa11y-webservice/data/fixture/load');
|
||||
var request = require('request');
|
||||
|
||||
// Run before all tests
|
||||
@@ -11,7 +12,14 @@ before(function (done) {
|
||||
this.baseUrl = 'http://localhost:' + config.port;
|
||||
this.last = {};
|
||||
this.navigate = createNavigator(this.baseUrl, this.last);
|
||||
assertTestAppIsRunning(this.baseUrl, done);
|
||||
assertTestAppIsRunning(this.baseUrl, function () {
|
||||
loadFixtures('test', config.webservice, done);
|
||||
});
|
||||
});
|
||||
|
||||
// Run after each test
|
||||
afterEach(function (done) {
|
||||
loadFixtures('test', config.webservice, done);
|
||||
});
|
||||
|
||||
// Check that the test application is running, and exit if not
|
||||
|
Reference in New Issue
Block a user