Skip to content

Commit

Permalink
style(test): prettier etokens suite
Browse files Browse the repository at this point in the history
  • Loading branch information
freshgum-bubbles committed May 30, 2024
1 parent f33b398 commit cb095ad
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/features/executable-token.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ describe('isExecutableToken', () => {
expect(typeof isExecutableToken).toBe('function');
});

test.each([
{ token: HostContainer() }
])('it returns true for $token.name', ({ token }) => {
test.each([{ token: HostContainer() }])('it returns true for $token.name', ({ token }) => {
expect(isExecutableToken(token)).toBe(true);
});

Expand Down

0 comments on commit cb095ad

Please sign in to comment.