Format with biome
This commit is contained in:
parent
45d62144bf
commit
222b5c25b0
2 changed files with 3 additions and 3 deletions
|
|
@ -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();
|
||||||
|
|
|
||||||
|
|
@ -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", () => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue