Fixing build to test gh actions

This commit is contained in:
simojenki
2021-01-29 13:21:49 +11:00
parent 032fa927ed
commit 857d1e4ef7
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
import { expect } from "chai";
describe("something", function () {
it("fails", function () {
expect(false).equal(true);
describe("something", () => {
it("fails", () => {
expect(true).equal(true);
});
});