From 6f447f799a4e4b4becc10725957d5db0f5f04682 Mon Sep 17 00:00:00 2001 From: jontrn Date: Mon, 15 Sep 2025 14:00:52 -0400 Subject: [PATCH 1/2] commit --- src/test/sensor.test.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/sensor.test.ts b/src/test/sensor.test.ts index 4ab24d8..96bf721 100644 --- a/src/test/sensor.test.ts +++ b/src/test/sensor.test.ts @@ -13,4 +13,8 @@ describe("isValidSensorValue()", () => { it("returns false for values above 100", () => { expect(isValidSensorValue(101)).toBe(false); }); + + it("returns false for values above 100", () => { + expect(isValidSensorValue(105)).toBe(false); + }); }); From 36ce2979fbcb8d25df1742b758558dc74f6273ad Mon Sep 17 00:00:00 2001 From: jontrn Date: Mon, 15 Sep 2025 14:01:02 -0400 Subject: [PATCH 2/2] commit 2 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 675c540..117b945 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - name: Run Tests with Vitest run: npm run test - - name: Run ESLint + - name: Run eSlint run: npm run lint # FOR IT TO WORK WITH GITHUB Actions and push to Docker registry do the following