mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-28 07:17:04 +02:00
store only
This commit is contained in:
parent
1663e6f690
commit
cbf1284040
|
|
@ -44,18 +44,19 @@ describe('dataStore', () => {
|
|||
name: 'myDataStore1',
|
||||
columns: [],
|
||||
});
|
||||
await dataStoreService.createDataStore(project2.id, {
|
||||
name: 'myDataStore2',
|
||||
columns: [],
|
||||
});
|
||||
// await dataStoreService.createDataStore(project2.id, {
|
||||
// name: 'myDataStore2',
|
||||
// columns: [],
|
||||
// });
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
// Clean up any created user data stores
|
||||
await dataStoreService.deleteDataStoreAll();
|
||||
// await dataStoreService.deleteDataStoreAll();
|
||||
});
|
||||
|
||||
describe('createDataStore', () => {
|
||||
it('should noop', () => {});
|
||||
it('should succeed with existing name in different project', async () => {
|
||||
// ACT
|
||||
const result = await dataStoreService.createDataStore(project1.id, {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user