@dxos/test-utils 0.8.4-main.b97322e → 0.8.4-main.dedc0f3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/test-utils",
3
- "version": "0.8.4-main.b97322e",
3
+ "version": "0.8.4-main.dedc0f3",
4
4
  "description": "Test utilities",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -34,8 +34,8 @@
34
34
  "dependencies": {
35
35
  "@playwright/test": "^1.46.0",
36
36
  "pkg-up": "^3.1.0",
37
- "@dxos/async": "0.8.4-main.b97322e",
38
- "@dxos/node-std": "0.8.4-main.b97322e"
37
+ "@dxos/async": "0.8.4-main.dedc0f3",
38
+ "@dxos/node-std": "0.8.4-main.dedc0f3"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "vitest": "^3.2.4"
package/src/playwright.ts CHANGED
@@ -4,9 +4,10 @@
4
4
 
5
5
  /* eslint-disable no-console */
6
6
 
7
- import { type Browser, type BrowserContext, type PlaywrightTestConfig, type Page } from '@playwright/test';
8
7
  import { existsSync, readFileSync } from 'node:fs';
9
8
  import { dirname, join, resolve } from 'node:path';
9
+
10
+ import { type Browser, type BrowserContext, type Page, type PlaywrightTestConfig } from '@playwright/test';
10
11
  import pkgUp from 'pkg-up';
11
12
 
12
13
  import { Lock } from './lock';