all repos — caroster @ 697013da96cbab8cec2487977d72c09c114fdec7

[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});