added prettier, removed seperate react eslint config, fixed missing

component display name Markdown.js, and added run method to app
This commit is contained in:
JJ Kasper
2018-06-01 16:31:14 -05:00
parent 0316746cae
commit 53ac8a6793
13 changed files with 66 additions and 89 deletions

View File

@@ -13,12 +13,11 @@ const getUrl = pathname => url.format({
});
describe('Feathers application tests', () => {
before(function(done) {
this.server = app.listen(port);
app.startNext().then(() => done());
before(async () => {
this.server = await app.run(port);
});
after(function(done) {
after(done => {
this.server.close(done);
});