mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
23 lines
449 B
Plaintext
23 lines
449 B
Plaintext
import { testDb, testModules } from '@n8n/backend-test-utils';
|
|
|
|
import { MyFeatureService } from '../my-feature.service';
|
|
|
|
beforeAll(async () => {
|
|
await testModules.loadModules(['my-feature']);
|
|
await testDb.init();
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
await testDb.truncate(['MyFeatureUnit']);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await testDb.terminate();
|
|
});
|
|
|
|
describe('start', () => {
|
|
it('should do something', () => {
|
|
expect(true).toBeTruthy();
|
|
});
|
|
});
|