mirror of
https://github.com/AppFlowy-IO/AppFlowy-Web.git
synced 2025-11-30 03:18:02 +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"
|
- name: "database"
|
||||||
spec: "cypress/e2e/database/**/*.cy.ts"
|
spec: "cypress/e2e/database/**/*.cy.ts"
|
||||||
description: "Database and grid operations"
|
description: "Database and grid operations"
|
||||||
|
- name: "embedded"
|
||||||
|
spec: "cypress/e2e/embeded_database/**/*.cy.ts"
|
||||||
|
description: "Embedded database operations"
|
||||||
- name: "page"
|
- name: "page"
|
||||||
spec: "cypress/e2e/page/**/*.cy.ts"
|
spec: "cypress/e2e/page/**/*.cy.ts"
|
||||||
description: "Page management (create, delete, share, publish)"
|
description: "Page management (create, delete, share, publish)"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { v4 as uuidv4 } from 'uuid';
|
import { v4 as uuidv4 } from 'uuid';
|
||||||
import { AuthTestUtils } from '../../support/auth-utils';
|
import { AuthTestUtils } from '../../../support/auth-utils';
|
||||||
import { getSlashMenuItemName } from '../../support/i18n-constants';
|
import { getSlashMenuItemName } from '../../../support/i18n-constants';
|
||||||
import {
|
import {
|
||||||
AddPageSelectors,
|
AddPageSelectors,
|
||||||
DatabaseFilterSelectors,
|
DatabaseFilterSelectors,
|
||||||
@@ -8,7 +8,7 @@ import {
|
|||||||
EditorSelectors,
|
EditorSelectors,
|
||||||
SlashCommandSelectors,
|
SlashCommandSelectors,
|
||||||
waitForReactUpdate,
|
waitForReactUpdate,
|
||||||
} from '../../support/selectors';
|
} from '../../../support/selectors';
|
||||||
|
|
||||||
describe('Database Conditions - Filters and Sorts UI', () => {
|
describe('Database Conditions - Filters and Sorts UI', () => {
|
||||||
const generateRandomEmail = () => `${uuidv4()}@appflowy.io`;
|
const generateRandomEmail = () => `${uuidv4()}@appflowy.io`;
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
import { v4 as uuidv4 } from 'uuid';
|
import { v4 as uuidv4 } from 'uuid';
|
||||||
import { AuthTestUtils } from '../../support/auth-utils';
|
import { AuthTestUtils } from '../../../support/auth-utils';
|
||||||
import { getSlashMenuItemName } from '../../support/i18n-constants';
|
import { getSlashMenuItemName } from '../../../support/i18n-constants';
|
||||||
import {
|
import {
|
||||||
AddPageSelectors,
|
AddPageSelectors,
|
||||||
EditorSelectors,
|
EditorSelectors,
|
||||||
SlashCommandSelectors,
|
SlashCommandSelectors,
|
||||||
waitForReactUpdate
|
waitForReactUpdate
|
||||||
} from '../../support/selectors';
|
} from '../../../support/selectors';
|
||||||
|
|
||||||
describe('Embedded Database - Plus Button View Creation', () => {
|
describe('Embedded Database - Plus Button View Creation', () => {
|
||||||
const generateRandomEmail = () => `${uuidv4()}@appflowy.io`;
|
const generateRandomEmail = () => `${uuidv4()}@appflowy.io`;
|
||||||
@@ -1,15 +1,14 @@
|
|||||||
import { v4 as uuidv4 } from 'uuid';
|
import { v4 as uuidv4 } from 'uuid';
|
||||||
import { AuthTestUtils } from '../../support/auth-utils';
|
import { AuthTestUtils } from '../../../support/auth-utils';
|
||||||
import { getSlashMenuItemName } from '../../support/i18n-constants';
|
import { getSlashMenuItemName } from '../../../support/i18n-constants';
|
||||||
import {
|
import {
|
||||||
AddPageSelectors,
|
AddPageSelectors,
|
||||||
DatabaseGridSelectors,
|
DatabaseGridSelectors,
|
||||||
EditorSelectors,
|
EditorSelectors,
|
||||||
ModalSelectors,
|
ModalSelectors,
|
||||||
PageSelectors,
|
|
||||||
SlashCommandSelectors,
|
SlashCommandSelectors,
|
||||||
waitForReactUpdate
|
waitForReactUpdate
|
||||||
} from '../../support/selectors';
|
} from '../../../support/selectors';
|
||||||
|
|
||||||
describe('Embedded Database - Slash Menu Creation', () => {
|
describe('Embedded Database - Slash Menu Creation', () => {
|
||||||
const generateRandomEmail = () => `${uuidv4()}@appflowy.io`;
|
const generateRandomEmail = () => `${uuidv4()}@appflowy.io`;
|
||||||
Reference in New Issue
Block a user