diff --git a/server/test/integration/flows/AlbumFlow.js b/server/test/integration/flows/AlbumFlow.js index 0c8bdd3..2d76b99 100644 --- a/server/test/integration/flows/AlbumFlow.js +++ b/server/test/integration/flows/AlbumFlow.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; } diff --git a/server/test/integration/flows/ArtistFlow.js b/server/test/integration/flows/ArtistFlow.js index 020cee9..55a4e9b 100644 --- a/server/test/integration/flows/ArtistFlow.js +++ b/server/test/integration/flows/ArtistFlow.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; } diff --git a/server/test/integration/flows/QueryFlow.js b/server/test/integration/flows/QueryFlow.js index a36e42b..2a277ef 100644 --- a/server/test/integration/flows/QueryFlow.js +++ b/server/test/integration/flows/QueryFlow.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; } diff --git a/server/test/integration/flows/SongFlow.js b/server/test/integration/flows/SongFlow.js index e296f55..9bd5234 100644 --- a/server/test/integration/flows/SongFlow.js +++ b/server/test/integration/flows/SongFlow.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; } diff --git a/server/test/integration/flows/TagFlow.js b/server/test/integration/flows/TagFlow.js index 918587d..7209f8b 100644 --- a/server/test/integration/flows/TagFlow.js +++ b/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; }