Skip to content

Commit

Permalink
test(eslint-plugin): update filename from relative to absolute path
Browse files Browse the repository at this point in the history
this should be fixed when #1424 gets merged
  • Loading branch information
armano2 committed Jan 11, 2020
1 parent 27b463b commit 8997b93
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -135,7 +135,7 @@ function Test(props: {
return <div key={props.id!} />;
};
`,
filename: 'react.tsx',
filename: path.join(rootDir, 'react.tsx'),
},
],

Expand Down Expand Up @@ -373,7 +373,7 @@ function Test(props: {
line: 7,
},
],
filename: 'react.tsx',
filename: path.join(rootDir, 'react.tsx'),
},
],
});

0 comments on commit 8997b93

Please sign in to comment.