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