Skip to content

Commit

Permalink
fixup! test(core): add type signature test for signal input API
Browse files Browse the repository at this point in the history
Simplify if check
  • Loading branch information
devversion committed Dec 20, 2023
1 parent 2d84a12 commit 925d652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/test/authoring/type_tester.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function main() {
let failing = false;

for (const member of testClazz.members) {
if (ts.isPropertyDeclaration(member) === false) {
if (!ts.isPropertyDeclaration(member)) {
continue;
}

Expand Down

0 comments on commit 925d652

Please sign in to comment.