Skip to content

Commit

Permalink
[Tests] enable a skipped test that's not failing anymore
Browse files Browse the repository at this point in the history
This test was added and skipped in #794 (probably since it was failing then), but it's not failing anymore on current master
  • Loading branch information
skozin authored and ljharb committed Jan 11, 2020
1 parent 2c57742 commit d2fa2f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/core/importType.js
Expand Up @@ -48,7 +48,7 @@ describe('importType(name)', function () {
expect(importType('importType', pathContext)).to.equal('internal')
})

it.skip("should return 'internal' for scoped packages resolved outside of node_modules", function () {
it("should return 'internal' for scoped packages resolved outside of node_modules", function () {
const pathContext = testContext({ 'import/resolver': { node: { paths: [pathToTestFiles] } } })
expect(importType('@importType/index', pathContext)).to.equal('internal')
})
Expand Down

0 comments on commit d2fa2f4

Please sign in to comment.