Skip to content

Commit 422496c

Browse files
committed
fix(cypress): correct import path for relocated heading-change-manually test
The file was moved from editor/ (depth 1) to editor/heading/change/ (depth 3) but the import path was only updated for one extra level instead of two. Fix ../../../ to ../../../../ for support/commands and fixtures/docMaker. Made-with: Cursor
1 parent 9699056 commit 422496c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/webapp/cypress/e2e/editor/heading/change/heading-change-manually.cy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable no-undef */
2-
import { TEST_TITLE, TEST_CONTENT } from '../../../support/commands'
3-
import { section, paragraph, heading } from '../../../fixtures/docMaker'
2+
import { TEST_TITLE, TEST_CONTENT } from '../../../../support/commands'
3+
import { section, paragraph, heading } from '../../../../fixtures/docMaker'
44

55
const DocumentStructureSchema1 = {
66
documentName: TEST_TITLE.HelloDocy,

0 commit comments

Comments
 (0)