Skip to content

Commit 8b21790

Browse files
committed
Add TODOs
1 parent c1a2732 commit 8b21790

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/actions/update-labels/test/update-labels.test.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { describe, expect, it } from "vitest";
22
import updateLabels from "../src/update-labels.js";
33

44
describe("update-labels", () => {
5+
// TODO: Replace with better tests
56
it("throws if inputs null", async () => {
67
await expect(
78
updateLabels({ github: null, context: null, core: null }),

.github/test/context.test.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { describe, expect, it } from "vitest";
22
import { extractInputs } from "../src/context.js";
33

44
describe("context", () => {
5+
// TODO: Replace with better tests
56
it("throws if inputs null", async () => {
67
await expect(extractInputs(null, null, null)).rejects.toThrow();
78
});

0 commit comments

Comments
 (0)