Skip to content

Commit

Permalink
added invalid tag starting with v test
Browse files Browse the repository at this point in the history
  • Loading branch information
afujiwara-roblox committed Nov 2, 2023
1 parent 1cd08d3 commit 0025671
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions __tests__/configFile.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import configFile from "../src/configFile";
import foreman from "../src/foreman";
import type {GitHubRelease} from "../src/foreman";
import {parse} from "toml";
import type { GitHubRelease } from "../src/foreman";
import { parse } from "toml";
test("get off my back, Jest", () => {
expect(5).toEqual(5);
});
Expand Down Expand Up @@ -53,6 +53,10 @@ test("filter valid releases", () => {
{
tag_name: "4.3.0",
assets: []
},
{
tag_name: "verybadtag",
assets: []
}
];

Expand Down

0 comments on commit 0025671

Please sign in to comment.