Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import path from 'node:path'
import { fileURLToPath } from 'node:url'
import type { Har as HarFile } from 'har-format'
import { parseHTML } from 'linkedom'
import { PAGES } from './har-index'
import { PAGES } from './har/_har-index'

const __dirname = path.dirname(fileURLToPath(import.meta.url))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ vi.mock('../src/overtype/overtype', () => {
})

import { describe as baseDescribe, test as baseTest, expect } from 'vitest'
import type { PAGES } from './har-index'
import { cleanupDOM, setupHarDOM } from './test-utils'
import type { PAGES } from './har/_har-index'
import { cleanupDOM, setupHarDOM } from './har-fixture-utils'

export const describe = baseDescribe

Expand Down
2 changes: 1 addition & 1 deletion browser-extension/tests/har-record.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'node:fs/promises'
import path from 'node:path'
import { chromium } from '@playwright/test'
import { PAGES } from './har-index'
import { PAGES } from './har/_har-index'

// Convert glob pattern to regex
function globToRegex(pattern: string): RegExp {
Expand Down
Loading