Skip to content

Commit

Permalink
fix: dummy change to check
Browse files Browse the repository at this point in the history
  • Loading branch information
marufrasully committed Mar 13, 2024
1 parent 3056e44 commit 21c9cf8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test-packages/test-utils/src/utils/expect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ export function expectXMLAttribute(
): asserts astNode is XMLAttribute {
expect(astNode.type).to.equal("XMLAttribute");
}
export function expectXMLAttribute02(
astNode: XMLElement | XMLAttribute
): asserts astNode is XMLAttribute {
expect(astNode.type).to.equal("XMLAttribute");
}

export function expectExists(value: unknown, message: string): asserts value {
expect(value, message).to.exist;
Expand Down

0 comments on commit 21c9cf8

Please sign in to comment.