Fix tests for new API URL code.

pull/12/head
Sander Vocke 5 years ago
parent 0e5295d10a
commit a9c1f84426
  1. 2
      server/test/integration/flows/AlbumFlow.js
  2. 2
      server/test/integration/flows/ArtistFlow.js
  3. 2
      server/test/integration/flows/QueryFlow.js
  4. 2
      server/test/integration/flows/SongFlow.js
  5. 2
      server/test/integration/flows/TagFlow.js

@ -8,7 +8,7 @@ import * as helpers from './helpers';
async function init() {
chai.use(chaiHttp);
const app = express();
SetupApp(app, await helpers.initTestDB());
SetupApp(app, await helpers.initTestDB(), '');
return app;
}

@ -8,7 +8,7 @@ import * as helpers from './helpers';
async function init() {
chai.use(chaiHttp);
const app = express();
SetupApp(app, await helpers.initTestDB());
SetupApp(app, await helpers.initTestDB(), '');
return app;
}

@ -8,7 +8,7 @@ import * as helpers from './helpers';
async function init() {
chai.use(chaiHttp);
const app = express();
SetupApp(app, await helpers.initTestDB());;
SetupApp(app, await helpers.initTestDB(), '');;
return app;
}

@ -8,7 +8,7 @@ import * as helpers from './helpers';
async function init() {
chai.use(chaiHttp);
const app = express();
SetupApp(app, await helpers.initTestDB());
SetupApp(app, await helpers.initTestDB(), '');
return app;
}

@ -8,7 +8,7 @@ import * as helpers from './helpers';
async function init() {
chai.use(chaiHttp);
const app = express();
SetupApp(app, await helpers.initTestDB());
SetupApp(app, await helpers.initTestDB(), '');
return app;
}

Loading…
Cancel
Save