We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a9e4a2 commit a01a88dCopy full SHA for a01a88d
test/lockfile.js
@@ -71,19 +71,19 @@ test("Lockfile.getLocked", (t) => {
71
foo: "bar",
72
bar: {}
73
});
74
- ok.truthy(!!lockfile.getLocked("foo"));
+ t.truthy(!!lockfile.getLocked("foo"));
75
76
77
test("Lockfile.getLocked pointer", (t) => {
78
let lockfile = new Lockfile({
79
80
81
82
83
84
85
test("Lockfile.getLocked no cache", (t) => {
86
- ok.truthy(!new Lockfile().getLocked("foobar"));
+ t.truthy(!new Lockfile().getLocked("foobar"));
87
88
89
test("Lockfile.getLocked defaults", (t) => {
0 commit comments