Skip to content

Commit

Permalink
fix(lib.utils tests): fixing lib.utils tests which cause a compilatio…
Browse files Browse the repository at this point in the history
…n error

Fixed lib.utils tests which caused a compilation error due to a change in the custom types.
ctrlc03 committed Feb 2, 2023

Verified

This commit was signed with the committer’s verified signature.
Eliulm Elias Wahl
1 parent 332752b commit a953307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/actions/test/unit/lib.utils.test.ts
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ describe("Utils", () => {
})
describe("extractPrefix", () => {
it("should return the prefix of a string", () => {
expect(extractPrefix(fakeCircuitsData.fakeCircuitSmallNoContributors.data.name)).to.equal(
expect(extractPrefix(fakeCircuitsData.fakeCircuitSmallNoContributors.data.name!)).to.equal(
fakeCircuitsData.fakeCircuitSmallNoContributors.data.prefix
)
})

0 comments on commit a953307

Please sign in to comment.