diff --git a/test/default-foreground.test.ts b/test/color.test.ts similarity index 78% rename from test/default-foreground.test.ts rename to test/color.test.ts index 1a51593..6237985 100644 --- a/test/default-foreground.test.ts +++ b/test/color.test.ts @@ -4,8 +4,8 @@ import { describe, expect, it } from "./suite.ts"; const decode = (b: Uint8Array) => new TextDecoder().decode(b); -describe("true default foreground", () => { - it("emits uncolored text with no concrete foreground", async () => { +describe("foreground", () => { + it("emits uncolored text with no foreground", async () => { let term = await createTerm({ width: 12, height: 1 }); let ansi = decode(term.render([text("hi")]).output);