mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
* use user-folder override consistently everywhere, including for the `.cache` folder * use consistent config for e2e tesing, skipping config loading from env and config files * simplify all the cypress commands, and run all e2e tests on master * add tests for skipping owner setup * add todos Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
10 lines
242 B
TypeScript
10 lines
242 B
TypeScript
describe('Authentication', () => {
|
|
it('should skip owner setup', () => {
|
|
cy.skipSetup();
|
|
});
|
|
|
|
// todo test for adding workflow
|
|
// todo test for setting up UM again through settings
|
|
// todo test that workflows migrated successfully
|
|
});
|