Skip to content

Commit

Permalink
fix(test): unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
andelf authored and tiensonqin committed Dec 12, 2021
1 parent 0d26856 commit 0f65074
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e-tests/basic.spec.ts
@@ -1,6 +1,6 @@
import { expect } from '@playwright/test'
import { test } from './fixtures'
import { randomString, createRandomPage, openSidebar, newBlock, lastBlock } from './utils'
import { randomString, createRandomPage, newBlock } from './utils'


test('render app', async ({ page }) => {
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/code-editing.spec.ts
@@ -1,6 +1,6 @@
import { expect } from '@playwright/test'
import { test } from './fixtures'
import { createRandomPage, newBlock, lastBlock, appFirstLoaded, IsMac, IsLinux, escapeToCodeEditor, escapeToBlockEditor } from './utils'
import { createRandomPage, escapeToCodeEditor, escapeToBlockEditor } from './utils'

/**
* NOTE: CodeMirror is a complex library that requires a lot of setup to work.
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/hotkey.spec.ts
@@ -1,6 +1,6 @@
import { expect } from '@playwright/test'
import { test } from './fixtures'
import { createRandomPage, newBlock, lastBlock, appFirstLoaded, IsMac, IsLinux } from './utils'
import { createRandomPage, newBlock, lastBlock, IsMac, IsLinux } from './utils'

test('open search dialog', async ({ page }) => {
if (IsMac) {
Expand Down

0 comments on commit 0f65074

Please sign in to comment.