mirror of
https://github.com/AppFlowy-IO/AppFlowy-Web.git
synced 2025-11-29 19:08:33 +08:00
chore: fix test
This commit is contained in:
3
.github/workflows/integration-test.yml
vendored
3
.github/workflows/integration-test.yml
vendored
@@ -28,6 +28,9 @@ jobs:
|
||||
- name: "database"
|
||||
spec: "cypress/e2e/database/**/*.cy.ts"
|
||||
description: "Database and grid operations"
|
||||
- name: "embedded"
|
||||
spec: "cypress/e2e/embeded_database/**/*.cy.ts"
|
||||
description: "Embedded database operations"
|
||||
- name: "page"
|
||||
spec: "cypress/e2e/page/**/*.cy.ts"
|
||||
description: "Page management (create, delete, share, publish)"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
import { AuthTestUtils } from '../../support/auth-utils';
|
||||
import { getSlashMenuItemName } from '../../support/i18n-constants';
|
||||
import { AuthTestUtils } from '../../../support/auth-utils';
|
||||
import { getSlashMenuItemName } from '../../../support/i18n-constants';
|
||||
import {
|
||||
AddPageSelectors,
|
||||
DatabaseFilterSelectors,
|
||||
@@ -8,7 +8,7 @@ import {
|
||||
EditorSelectors,
|
||||
SlashCommandSelectors,
|
||||
waitForReactUpdate,
|
||||
} from '../../support/selectors';
|
||||
} from '../../../support/selectors';
|
||||
|
||||
describe('Database Conditions - Filters and Sorts UI', () => {
|
||||
const generateRandomEmail = () => `${uuidv4()}@appflowy.io`;
|
||||
@@ -1,12 +1,12 @@
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
import { AuthTestUtils } from '../../support/auth-utils';
|
||||
import { getSlashMenuItemName } from '../../support/i18n-constants';
|
||||
import { AuthTestUtils } from '../../../support/auth-utils';
|
||||
import { getSlashMenuItemName } from '../../../support/i18n-constants';
|
||||
import {
|
||||
AddPageSelectors,
|
||||
EditorSelectors,
|
||||
SlashCommandSelectors,
|
||||
waitForReactUpdate
|
||||
} from '../../support/selectors';
|
||||
} from '../../../support/selectors';
|
||||
|
||||
describe('Embedded Database - Plus Button View Creation', () => {
|
||||
const generateRandomEmail = () => `${uuidv4()}@appflowy.io`;
|
||||
@@ -1,15 +1,14 @@
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
import { AuthTestUtils } from '../../support/auth-utils';
|
||||
import { getSlashMenuItemName } from '../../support/i18n-constants';
|
||||
import { AuthTestUtils } from '../../../support/auth-utils';
|
||||
import { getSlashMenuItemName } from '../../../support/i18n-constants';
|
||||
import {
|
||||
AddPageSelectors,
|
||||
DatabaseGridSelectors,
|
||||
EditorSelectors,
|
||||
ModalSelectors,
|
||||
PageSelectors,
|
||||
SlashCommandSelectors,
|
||||
waitForReactUpdate
|
||||
} from '../../support/selectors';
|
||||
} from '../../../support/selectors';
|
||||
|
||||
describe('Embedded Database - Slash Menu Creation', () => {
|
||||
const generateRandomEmail = () => `${uuidv4()}@appflowy.io`;
|
||||
Reference in New Issue
Block a user