Skip to content

Commit 0b71e79

Browse files
committed
Format. Dependency update. Version bump.
1 parent b7b1723 commit 0b71e79

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hexagon/croner",
3-
"version": "9.0.1-dev.2",
3+
"version": "9.0.1-dev.3",
44
"exports": "./src/croner.ts",
55
"lint": {
66
"include": ["src", "build"]
@@ -24,7 +24,7 @@
2424
"@cross/test": "jsr:@cross/test@~0.0.9",
2525
"@std/assert": "jsr:@std/assert@~1.0.6",
2626
"@std/path": "jsr:@std/path@~1.0.7",
27-
"esbuild": "npm:esbuild@~0.24.0",
27+
"esbuild": "npm:esbuild@0.25.1",
2828
"esbuild-plugin-d.ts": "npm:esbuild-plugin-d.ts@~1.3.1"
2929
},
3030
"publish": {

test/croner.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1021,10 +1021,9 @@ test("Fire-once should be supported by date, future and .nextRun() should return
10211021
assertEquals(nextRun && nextRun?.getTime() < refTime.getTime() + 4000, true);
10221022
});
10231023

1024-
test('Number of milliseconds to next run should be < 1s when interval is paired with a PerSecondJob', () => {
1024+
test("Number of milliseconds to next run should be < 1s when interval is paired with a PerSecondJob", () => {
10251025
const cron = new Cron("* * * * * *", {
10261026
interval: 5,
1027-
})
1027+
});
10281028
assertEquals(cron.msToNext()! < 1000, true);
10291029
});
1030-

0 commit comments

Comments
 (0)