Skip to content

Commit

Permalink
enable interval timers
Browse files Browse the repository at this point in the history
  • Loading branch information
richarddavison committed Nov 8, 2023
1 parent de5b4d0 commit be44523
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/timers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe("timers", () => {
assert.equal(status, "cleared");
});

it.skip("should set interval", async () => {
it("should set interval", async () => {
const start = Date.now();
let count = 1;
await new Promise<void>((resolve) => {
Expand All @@ -55,7 +55,7 @@ describe("timers", () => {
assert.equal(count, 5);
});

it.skip("should clear interval", async () => {
it("should clear interval", async () => {
const start = Date.now();
let count = 1;
await new Promise<void>((resolve) => {
Expand Down

0 comments on commit be44523

Please sign in to comment.