Skip to content

Commit

Permalink
Fix plugin path
Browse files Browse the repository at this point in the history
  • Loading branch information
hudochenkov committed Jan 10, 2020
1 parent 644b713 commit 6a2ffbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/__tests__/printConfig.test.js
Expand Up @@ -14,7 +14,7 @@ it('printConfig uses getConfigForFile to retrieve the config', () => {
files: [filepath],
}).then((result) => {
expect(result).toEqual({
plugins: [replaceBackslashes(path.join(__dirname, '/fixtures/plugin-warn-about-foo.js'))],
plugins: [path.join(__dirname, '/fixtures/plugin-warn-about-foo.js')],
rules: {
'block-no-empty': [true],
'plugin/warn-about-foo': ['always'],
Expand Down

0 comments on commit 6a2ffbd

Please sign in to comment.