Skip to content

Commit

Permalink
More test
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Sep 1, 2020
1 parent 27e0be0 commit 08d53bf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion tests/js/objects/__snapshots__/jsfmt.spec.js.snap
Expand Up @@ -124,7 +124,9 @@ printWidth: 80
({
get *iterator() { },
set *iterator(iter) { }
set *iterator(iter) { },
get iterator2() { },
set iterator2(iter) { },
});
=====================================output=====================================
Expand All @@ -134,6 +136,8 @@ printWidth: 80
({
get *iterator() {},
set *iterator(iter) {},
get iterator2() {},
set iterator2(iter) {},
});
================================================================================
Expand Down
4 changes: 3 additions & 1 deletion tests/js/objects/invalid-accessor-generator.js
Expand Up @@ -3,5 +3,7 @@

({
get *iterator() { },
set *iterator(iter) { }
set *iterator(iter) { },
get iterator2() { },
set iterator2(iter) { },
});

0 comments on commit 08d53bf

Please sign in to comment.