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 7fc6fc9 commit a425606Copy full SHA for a425606
lib/init.spec.lua
@@ -190,7 +190,7 @@ return function()
190
end)
191
192
describe("Promise.delay", function()
193
- it("Should schedule promise resolution", function()
+ it("should schedule promise resolution", function()
194
local promise = Promise.delay(1)
195
196
expect(promise:getStatus()).to.equal(Promise.Status.Started)
@@ -202,7 +202,7 @@ return function()
202
expect(promise:getStatus()).to.equal(Promise.Status.Resolved)
203
204
205
- it("Should allow for delays to be cancelled", function()
+ it("should allow for delays to be cancelled", function()
206
local promise = Promise.delay(2)
207
208
Promise.delay(1):andThen(function()
0 commit comments