Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jgerigmeyer committed Feb 21, 2024
1 parent 8404249 commit 4785ec1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/js/testSassImporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ describe('sassImporter', () => {
assert.ok(
findFileUrl('~sass-true')
.toString()
.startsWith(`file://${path.resolve(process.cwd(), '.yarn/')}`),
.startsWith(`file://${path.resolve(process.cwd(), 'node_modules/')}`),
);
assert.ok(
findFileUrl('~@babel/core')
.toString()
.startsWith(`file://${path.resolve(process.cwd(), '.yarn/')}`),
.startsWith(`file://${path.resolve(process.cwd(), 'node_modules/')}`),
);
});
});

0 comments on commit 4785ec1

Please sign in to comment.