1
0
Fork 0
mirror of synced 2024-08-07 14:18:02 +12:00
budibase/packages/server/tests/all.spec.js
2019-06-19 22:05:53 +01:00

11 lines
242 B
JavaScript

const app = require("./testApp")();
const authenticateMaster = require("./authenticate");
beforeAll(async () => await app.start())
afterAll(async () => await app.destroy())
describe("authenticateMaster", () => authenticateMaster(app));