fix: tests

This commit is contained in:
Sebastian Rindom
2021-10-15 20:00:27 +02:00
parent 690cdd2392
commit fe34ab5976
2 changed files with 1 additions and 15 deletions

View File

@@ -13,17 +13,3 @@ Object {
"updated_at": Any<String>,
}
`;
exports[`/admin/discounts creates admin session correctly 1`] = `
Object {
"api_token": "test_token",
"created_at": Any<String>,
"deleted_at": null,
"email": "admin@medusa.js",
"first_name": null,
"id": "admin_user",
"last_name": null,
"metadata": null,
"updated_at": Any<String>,
}
`;

View File

@@ -16,7 +16,7 @@ describe("/store/shipping-options", () => {
beforeAll(async () => {
const cwd = path.resolve(path.join(__dirname, "..", ".."))
dbConnection = await initDb({ cwd })
medusaProcess = await setupServer({ cwd, verbose: true })
medusaProcess = await setupServer({ cwd })
})
afterAll(async () => {