Intentionally failing test to see what happens to gh actions workflow

This commit is contained in:
simojenki
2021-01-29 13:14:32 +11:00
parent 5ff6f133b3
commit ff515a3f2e

View File

@@ -2,6 +2,6 @@ import { expect } from "chai";
describe("something", function () { describe("something", function () {
it("fails", function () { it("fails", function () {
expect(true).equal(true); expect(false).equal(true);
}); });
}); });