Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Commit

Permalink
fix: downgrade test matcher
Browse files Browse the repository at this point in the history
  • Loading branch information
nullfame committed Apr 3, 2024
1 parent 7c2ef86 commit 7157dc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/__tests__/projectTagger.function.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe("ProjectTagger Function", () => {
});
} catch (error) {
// eslint-disable-next-line jest/no-conditional-expect
expect(error).toBeJaypieError();
expect(error.isProjectError).toBeTrue();
}
expect.assertions(1);
});
Expand All @@ -91,7 +91,7 @@ describe("ProjectTagger Function", () => {
});
} catch (error) {
// eslint-disable-next-line jest/no-conditional-expect
expect(error).toBeJaypieError();
expect(error.isProjectError).toBeTrue();
}
expect.assertions(1);
});
Expand Down

0 comments on commit 7157dc8

Please sign in to comment.