mirror of
https://github.com/softprops/action-gh-release.git
synced 2025-06-27 14:06:01 +00:00
chore: swap node assert with vitest assert
Signed-off-by: Rui Chen <rui@chenrui.dev>
This commit is contained in:
parent
72f2c25fcb
commit
5822334cb4
2 changed files with 8 additions and 10 deletions
|
@ -1,13 +1,12 @@
|
|||
import * as assert from "assert";
|
||||
import {
|
||||
mimeOrDefault,
|
||||
asset,
|
||||
Releaser,
|
||||
Release,
|
||||
findTagFromReleases,
|
||||
mimeOrDefault,
|
||||
Release,
|
||||
Releaser,
|
||||
} from "../src/github";
|
||||
|
||||
import { describe, it } from "vitest";
|
||||
import { assert, describe, it } from "vitest";
|
||||
|
||||
describe("github", () => {
|
||||
describe("mimeOrDefault", () => {
|
||||
|
|
|
@ -1,16 +1,15 @@
|
|||
import {
|
||||
releaseBody,
|
||||
alignAssetName,
|
||||
isTag,
|
||||
paths,
|
||||
parseConfig,
|
||||
parseInputFiles,
|
||||
paths,
|
||||
releaseBody,
|
||||
unmatchedPatterns,
|
||||
uploadUrl,
|
||||
alignAssetName,
|
||||
} from "../src/util";
|
||||
import * as assert from "assert";
|
||||
|
||||
import { describe, it, expect } from "vitest";
|
||||
import { assert, describe, expect, it } from "vitest";
|
||||
|
||||
describe("util", () => {
|
||||
describe("uploadUrl", () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue