Format with biome

This commit is contained in:
Jared Miller 2026-02-23 17:38:12 -05:00
parent 45d62144bf
commit 222b5c25b0
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
import { drawCards } from "./state.js"; import { rollDie } from "./die.js";
import { resolveEffects } from "./effects.js"; import { resolveEffects } from "./effects.js";
import { resolveEnemyAction } from "./enemies.js"; import { resolveEnemyAction } from "./enemies.js";
import { rollDie } from "./die.js"; import { drawCards } from "./state.js";
export function startTurn(state) { export function startTurn(state) {
const dieResult = rollDie(); const dieResult = rollDie();

View file

@ -1,5 +1,5 @@
import { describe, expect, test } from "bun:test"; import { describe, expect, test } from "bun:test";
import { startTurn, resolveEnemyTurn, checkCombatEnd } from "./combat.js"; import { checkCombatEnd, resolveEnemyTurn, startTurn } from "./combat.js";
import { createCombatState } from "./state.js"; import { createCombatState } from "./state.js";
describe("startTurn", () => { describe("startTurn", () => {