Skip to content

Commit

Permalink
chore: added two more asserts for isScoped and isScopedModule
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Perello committed Jul 6, 2021
1 parent 4a81f0a commit cc1d442
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .vscode/settings.json
@@ -0,0 +1,2 @@
{
}
2 changes: 2 additions & 0 deletions tests/src/core/importType.js
Expand Up @@ -241,12 +241,14 @@ describe('importType(name)', function () {

it('correctly identifies scoped modules with `isScopedModule`', () => {
expect(isScopedModule('@/abc')).to.equal(false);
expect(isScopedModule('@/abc/def')).to.equal(false);
expect(isScopedModule('@a/abc')).to.equal(true);
expect(isScopedModule('@a/abc/def')).to.equal(true);
});

it('correctly identifies scoped modules with `isScoped`', () => {
expect(isScoped('@/abc')).to.equal(false);
expect(isScoped('@/abc/def')).to.equal(false);
expect(isScoped('@a/abc')).to.equal(true);
expect(isScoped('@a/abc/def')).to.equal(true);
});
Expand Down

0 comments on commit cc1d442

Please sign in to comment.