From 857d1e4ef7dea456387df73c3f6d1520c10d27b5 Mon Sep 17 00:00:00 2001 From: simojenki Date: Fri, 29 Jan 2021 13:21:49 +1100 Subject: [PATCH] Fixing build to test gh actions --- .github/workflows/master.yml | 2 +- tests/hello-world.test.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index cc28497..e185867 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -1,4 +1,4 @@ -name: CI/CD +name: master test and release on: push: diff --git a/tests/hello-world.test.ts b/tests/hello-world.test.ts index f5cba4d..766089b 100644 --- a/tests/hello-world.test.ts +++ b/tests/hello-world.test.ts @@ -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); }); });