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 16a3907 commit cd9e1fd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ sonar.organization=sap-1
sonar.projectKey=SAP_ui5-language-assistant
sonar.sources=.
sonar.inclusions=**/*.ts
sonar.exclusions=**/*.test.ts, **/test/**/*
sonar.cpd.exclusions=**/i18n.ts, **/*.test.ts, **/test/**/*
sonar.exclusions=**/*.test.ts, **/test/**/*, **/test-packages/**/*
sonar.cpd.exclusions=**/i18n.ts, **/*.test.ts, **/test/**/*, **/test-packages/**/*
sonar.tests=.
sonar.test.inclusions=**/*.test.ts
sonar.javascript.lcov.reportPaths=packages/binding/reports/test/unit/coverage/lcov.info, \
Expand Down
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 cd9e1fd

Please sign in to comment.