invoke yarn fix:js to adopt the updated eslint rules. No other changes are included.

This commit is contained in:
Jesse Hallam
2018-02-21 14:20:33 -05:00
parent 38bcaaae5e
commit 620c5484e3
49 changed files with 251 additions and 251 deletions

View File

@@ -16,17 +16,17 @@ describe('application', function desc() {
version: 1,
teams: [{
name: 'example_1',
url: testURL
url: testURL,
}, {
name: 'example_2',
url: testURL
}]
url: testURL,
}],
};
before(() => {
this.server = http.createServer((req, res) => {
res.writeHead(200, {
'Content-Type': 'text/html'
'Content-Type': 'text/html',
});
res.end(fs.readFileSync(path.resolve(env.sourceRootDir, 'test/modules/test.html'), 'utf-8'));
}).listen(serverPort, '127.0.0.1');
@@ -114,7 +114,7 @@ describe('application', function desc() {
};
return Promise.all([
tryEval(0),
tryEvalInSettingsPage()
tryEvalInSettingsPage(),
]);
});
});