@picturelink/barrelsby
Version:
Automatic TypeScript barrels for your entire code base
18 lines (15 loc) • 449 B
text/typescript
import * as TestUtilities from "../testUtilities";
import { addHeaderPrefix } from "./header";
describe("builder/header module has a", () => {
describe("addHeaderPrefix function that", () => {
it("should add a header prefix to the specified string", () => {
TestUtilities.assertMultiLine(
addHeaderPrefix("Test Content"),
`/**
* @file Automatically generated by barrelsby.
*/
Test Content`
);
});
});
});