Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-sull authored and github-actions[bot] committed Apr 13, 2022
1 parent ef8200a commit ea35e2f
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions test/tailwindcss.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,8 @@ describe('Tailwind', () => {
);

// custom theme colors were included
expect(bundledCSS, 'includes custom theme colors').to.match(
/\.text-midnight{/
);
expect(bundledCSS, 'includes custom theme colors').to.match(
/\.bg-dawn{/
);
expect(bundledCSS, 'includes custom theme colors').to.match(/\.text-midnight{/);
expect(bundledCSS, 'includes custom theme colors').to.match(/\.bg-dawn{/);
});

it('maintains classes in HTML', async () => {
Expand Down Expand Up @@ -108,12 +104,8 @@ describe('Tailwind', () => {
expect(text, 'supports arbitrary value classes').to.match(/.font-\\[900\\]/);

// custom theme colors were included
expect(text, 'includes custom theme colors').to.match(
/\.text-midnight/
);
expect(text, 'includes custom theme colors').to.match(
/\.bg-dawn/
);
expect(text, 'includes custom theme colors').to.match(/\.text-midnight/);
expect(text, 'includes custom theme colors').to.match(/\.bg-dawn/);
});

it('maintains classes in HTML', async () => {
Expand Down

0 comments on commit ea35e2f

Please sign in to comment.