Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
natemoo-re committed Dec 12, 2022
1 parent 11af86f commit 0b845ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/transformers/inline.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ describe("inline", () => {
color: red;
}
</style>`;
const output = await transform(input, [inline()]).trim();
expect(output).toEqual(`<div class="cool" style="color:red;">Hello world</div>`);
const output = await transform(input, [inline()]);
expect(output.trim()).toEqual(`<div class="cool" style="color:red;">Hello world</div>`);
});
});

Expand Down

0 comments on commit 0b845ca

Please sign in to comment.