Files
bonob/tests/hello-world.test.ts
2021-01-29 13:21:49 +11:00

8 lines
126 B
TypeScript

import { expect } from "chai";
describe("something", () => {
it("fails", () => {
expect(true).equal(true);
});
});