Skip to content

Commit dfc55fa

Browse files
committed
Fix lint
1 parent b501276 commit dfc55fa

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/core/lib/v3/tests/user-data-dir.spec.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ test.describe("userDataDir persistence", () => {
1010
let testDir: string;
1111

1212
test.beforeEach(() => {
13-
testDir = fs.mkdtempSync(path.join(os.tmpdir(), "stagehand-userdata-test-"));
13+
testDir = fs.mkdtempSync(
14+
path.join(os.tmpdir(), "stagehand-userdata-test-"),
15+
);
1416
});
1517

1618
test.afterEach(async () => {
@@ -44,4 +46,3 @@ test.describe("userDataDir persistence", () => {
4446
expect(fs.existsSync(path.join(testDir, "Local State"))).toBe(true);
4547
});
4648
});
47-

0 commit comments

Comments
 (0)