style: fix formatting in timer.apply-job-result.test.ts

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Barry 2026-03-19 00:03:58 -04:00
parent 31db7df761
commit defdbe9110

View File

@ -1,7 +1,7 @@
import { describe, expect, it, vi } from "vitest";
import type { CronJob, CronStoreFile } from "../types.js";
import { applyJobResult } from "./timer.js";
import type { CronServiceState } from "./state.js";
import { applyJobResult } from "./timer.js";
function createMockState(jobs: CronJob[] = []): CronServiceState {
const store: CronStoreFile = { version: 1, jobs };