Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
zglicz committed Nov 12, 2024
1 parent d0aaec8 commit 70571ff
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions packages/css/tests/linter/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,10 @@ describe('createStylelintConfig', () => {
{ key: 'bar', configurations: [42] },
];
const config = createStylelintConfig(rules);
expect(config).toEqual({
customSyntax: 'postcss-syntax',
rules: {
foo: true,
bar: [42],
},
plugins,
expect(config.rules).toEqual({
foo: true,
bar: [42],
});
expect(config.plugins).toEqual(plugins);
});
});

0 comments on commit 70571ff

Please sign in to comment.