chore: update dependencies (#1041)

This commit is contained in:
Daniel Lautzenheiser
2024-01-04 09:37:14 -05:00
committed by GitHub
parent 808070761d
commit 40d697cac2
19 changed files with 1492 additions and 1029 deletions

View File

@ -1,31 +1,32 @@
import format from 'date-fns/format';
import { WorkflowStatus } from '@staticcms/core/constants/publishModes';
import { editorStatus, notifications, publishTypes } from '../utils/constants';
import {
login,
assertEntryDeleted,
assertFieldValidationError,
assertNotification,
assertOnCollectionsPage,
assertPublishedEntry,
assertWorkflowStatus,
assertWorkflowStatusInEditor,
createPost,
createPostAndExit,
exitEditor,
goToWorkflow,
updateWorkflowStatus,
publishWorkflowEntry,
assertWorkflowStatusInEditor,
assertPublishedEntry,
deleteEntryInEditor,
assertOnCollectionsPage,
assertEntryDeleted,
assertWorkflowStatus,
updateWorkflowStatusInEditor,
unpublishEntry,
publishEntryInEditor,
duplicateEntry,
exitEditor,
goToEntry,
goToWorkflow,
login,
populateEntry,
publishAndCreateNewEntryInEditor,
publishAndDuplicateEntryInEditor,
assertNotification,
assertFieldValidationError,
publishEntryInEditor,
publishWorkflowEntry,
unpublishEntry,
updateWorkflowStatus,
updateWorkflowStatusInEditor,
} from '../utils/steps';
import { editorStatus, publishTypes, notifications } from '../utils/constants';
import {
entry1,
entry10,
@ -43,7 +44,6 @@ import {
entry8,
entry9,
} from './common/entries';
import { WorkflowStatus } from '@staticcms/core/constants/publishModes';
describe('Test Backend Editorial Workflow', () => {
after(() => {

View File

@ -1,4 +1,4 @@
import execa from 'execa';
import { execa } from 'execa';
import { globby } from 'globby';
async function runCypress() {

View File

@ -1,5 +1,5 @@
import format from 'date-fns/format';
import 'cypress-real-events';
import format from 'date-fns/format';
import { editorStatus, notifications, publishTypes, workflowStatus } from './constants';