mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-21 17:33:29 +01:00
8 lines
126 B
TypeScript
8 lines
126 B
TypeScript
import { expect } from "chai";
|
|
|
|
describe("something", () => {
|
|
it("fails", () => {
|
|
expect(true).equal(true);
|
|
});
|
|
});
|