mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-22 09:53:32 +01:00
8 lines
139 B
TypeScript
8 lines
139 B
TypeScript
import { expect } from "chai";
|
|
|
|
describe("something", function () {
|
|
it("fails", function () {
|
|
expect(false).equal(true);
|
|
});
|
|
});
|