From d2fa2f4f01c508b6196067993e3e48cd51dc3275 Mon Sep 17 00:00:00 2001 From: Sam Kozin Date: Sun, 12 Jan 2020 01:28:55 +0300 Subject: [PATCH] [Tests] enable a skipped test that's not failing anymore This test was added and skipped in #794 (probably since it was failing then), but it's not failing anymore on current master --- tests/src/core/importType.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/core/importType.js b/tests/src/core/importType.js index 034b3cbbcf..f1e951cc47 100644 --- a/tests/src/core/importType.js +++ b/tests/src/core/importType.js @@ -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') })