Skip to content

Commit

Permalink
test(ecs): minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 28, 2021
1 parent 1282973 commit f8725ff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion packages/ecs/test/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,9 @@ group(
});
},
},
{ beforeEach: () => (ecs = new ECS({ capacity: 16 })) }
{
beforeEach: () => {
ecs = new ECS({ capacity: 16 });
},
}
);
4 changes: 3 additions & 1 deletion packages/ecs/test/group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ group(
},
},
{
beforeEach: () => (ecs = new ECS({ capacity: 16 })),
beforeEach: () => {
ecs = new ECS({ capacity: 16 });
},
}
);

0 comments on commit f8725ff

Please sign in to comment.