Tooling update (#184)

* Use a common Makefile/build process

* Use ESLint with the pa11y lint config
This commit is contained in:
Rowan Manning
2017-03-21 13:41:46 +00:00
committed by GitHub
parent e27e129677
commit b24076abf1
39 changed files with 370 additions and 375 deletions

View File

@@ -23,11 +23,11 @@ describe('GET /<task-id>', function() {
describe('when task has results', function() {
beforeEach(function(done) {
const req = {
const request = {
method: 'GET',
endpoint: '/abc000000000000000000001'
};
this.navigate(req, done);
this.navigate(request, done);
});
it('should send a 200 status', function() {
@@ -82,11 +82,11 @@ describe('GET /<task-id>', function() {
describe('when task has no results', function() {
beforeEach(function(done) {
const req = {
const request = {
method: 'GET',
endpoint: '/abc000000000000000000003'
};
this.navigate(req, done);
this.navigate(request, done);
});
it('should send a 200 status', function() {