Skip to content

Commit a01a88d

Browse files
committed
ok -> t
1 parent 0a9e4a2 commit a01a88d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/lockfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,19 +71,19 @@ test("Lockfile.getLocked", (t) => {
7171
foo: "bar",
7272
bar: {}
7373
});
74-
ok.truthy(!!lockfile.getLocked("foo"));
74+
t.truthy(!!lockfile.getLocked("foo"));
7575
});
7676

7777
test("Lockfile.getLocked pointer", (t) => {
7878
let lockfile = new Lockfile({
7979
foo: "bar",
8080
bar: {}
8181
});
82-
ok.truthy(!!lockfile.getLocked("foo"));
82+
t.truthy(!!lockfile.getLocked("foo"));
8383
});
8484

8585
test("Lockfile.getLocked no cache", (t) => {
86-
ok.truthy(!new Lockfile().getLocked("foobar"));
86+
t.truthy(!new Lockfile().getLocked("foobar"));
8787
});
8888

8989
test("Lockfile.getLocked defaults", (t) => {

0 commit comments

Comments
 (0)