Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Commit

Permalink
fix: tsc linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcaidev committed Jan 18, 2025
1 parent 81589e8 commit 544d5b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/transpiler/bind.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe("Directive c-bind", () => {
<div :class="a" id="test"></p>
</div>
`;
const app = createApp({ root: "#app", data: { a: 0 } });
createApp({ root: "#app", data: { a: 0 } });
const div = document.querySelector("#test")!;

expect(div.className).toEqual("0");
Expand Down

0 comments on commit 544d5b5

Please sign in to comment.