test: Move cloud tests to cloud/ directory (#22840)

This commit is contained in:
Artem Sorokin
2025-12-05 16:42:37 +01:00
committed by GitHub
parent 3292132c49
commit b04970a478

View File

@@ -1,7 +1,7 @@
import { test, expect } from '../../fixtures/base';
import basePlanData from '../../fixtures/plan-data-trial.json';
import type { n8nPage } from '../../pages/n8nPage';
import type { TestRequirements } from '../../Types';
import { test, expect } from '../../../fixtures/base';
import basePlanData from '../../../fixtures/plan-data-trial.json';
import type { n8nPage } from '../../../pages/n8nPage';
import type { TestRequirements } from '../../../Types';
const fiveDaysFromNow = new Date(Date.now() + 5 * 24 * 60 * 60 * 1000);
const planData = { ...basePlanData, expirationDate: fiveDaysFromNow.toJSON() };