Notes/spec/support/utils.spec.ts

14 lines
251 B
TypeScript

import { trimIndentation } from "./utils.js";
describe("Utils", () => {
it("trims indentation", () => {
expect(trimIndentation`\
Hello
world
123`
).toBe(`\
Hello
world
123`);
});
});