all repos — caroster @ efb618469130ae351c648f97b4a1d6cac23525b3

[Octree] Group carpool to your event https://caroster.io

backend/tests/app.test.js (view raw)

 1const { setupStrapi, cleanupStrapi } = require("./helpers/strapi");
 2
 3beforeAll(async () => {
 4  await setupStrapi();
 5});
 6
 7afterAll(async () => {
 8  await cleanupStrapi();
 9});
10
11it("strapi is defined", () => {
12  expect(strapi).toBeDefined();
13});