Skip to content

Commit 0443600

Browse files
committed
Added test for issue #32
1 parent 624ea11 commit 0443600

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

test/index.test.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,7 @@ describe('sass-loader', function () {
6767
test('should pass the include paths to node-sass', 'include-paths',
6868
'includePaths[]=' + path.resolve(__dirname, './sass/another') + '&' +
6969
'includePaths[]=' + path.resolve(__dirname, './scss/another'));
70+
71+
// Test for issue: https://github.com/jtangelder/sass-loader/issues/32
72+
test('should pass with multiple imports', 'multiple-imports')
7073
});

test/sass/multiple-imports.sass

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import "language", "another/module"

test/scss/multiple-imports.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import "language", "another/module";

0 commit comments

Comments
 (0)