strapi/test/index.test.js

9 lines
126 B
JavaScript
Raw Normal View History

2018-06-13 15:31:33 +02:00
describe('Initialize', () => {
2018-05-25 11:49:46 +02:00
test(
2018-06-13 15:31:33 +02:00
'Avoid failure',
2018-05-25 11:49:46 +02:00
async () => {
2018-06-13 15:31:33 +02:00
expect(true).toBeTruthy();
2018-05-25 11:49:46 +02:00
}
);
});