Skip to content

Commit

Permalink
Fixes #3504 / organizes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-dean committed Jun 22, 2020
1 parent efb76ec commit 26610ff
Show file tree
Hide file tree
Showing 213 changed files with 131 additions and 116 deletions.
5 changes: 4 additions & 1 deletion packages/less/lib/less/tree/import.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/less/lib/less/tree/import.js.map

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion packages/less/src/less/tree/import.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,13 @@ class Import extends Node {
throw this.error;
}
return newImport;
} else {
} else if (this.root) {
ruleset = new Ruleset(null, utils.copyArray(this.root.rules));
ruleset.evalImports(context);

return this.features ? new Media(ruleset.rules, this.features.value) : ruleset.rules;
} else {
return [];
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions packages/less/test/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Tests are generally organized in the `less/` folder by what options are set in index.js.

The main tests are located under `less/_main/`
14 changes: 7 additions & 7 deletions packages/less/test/browser/generator/runner.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ module.exports = {
main: {
// src is used to build list of less files to compile
src: [
"test/less/*.less",
"!test/less/plugin-preeval.less", // uses ES6 syntax
"test/less/_main/*.less",
"!test/less/_main/plugin-preeval.less", // uses ES6 syntax
// Don't test NPM import, obviously
"!test/less/plugin-module.less",
"!test/less/import-module.less",
"!test/less/javascript.less",
"!test/less/urls.less",
"!test/less/empty.less"
"!test/less/_main/plugin-module.less",
"!test/less/_main/import-module.less",
"!test/less/_main/javascript.less",
"!test/less/_main/urls.less",
"!test/less/_main/empty.less"
],
options: {
helpers: "test/browser/runner-main-options.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/less/test/browser/runner-browser-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ var testFiles = ['charsets', 'colors', 'comments', 'css-3', 'strings', 'media',

for (var i = 0; i < testFiles.length; i++) {
var file = testFiles[i],
lessPath = '/test/less/' + file + '.less',
cssPath = '/test/css/' + file + '.css',
lessPath = '/test/less/_main/' + file + '.less',
cssPath = '/test/css/_main/' + file + '.css',
lessStyle = document.createElement('style'),
cssLink = document.createElement('link'),
lessText = '@import "' + lessPath + '";';
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions packages/less/test/css/process-imports/google.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.a {
b: c;
}
137 changes: 69 additions & 68 deletions packages/less/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,80 +7,81 @@ console.log('\n' + stylize('Less', 'underline') + '\n');

lessTester.prepBomTest();
var testMap = [
[{}, 'namespacing/'],
[{
// TODO: Change this to rewriteUrls: 'all' once the relativeUrls option is removed
relativeUrls: true,
silent: true,
javascriptEnabled: true
}],
[{
math: 'strict-legacy'
}, 'math/strict-legacy/'],
[{
math: 'parens'
}, 'math/strict/'],
[{
math: 'parens-division'
}, 'math/parens-division/'],
// Use legacy strictMath: true here to demonstrate it still works
[{strictMath: true, strictUnits: true, javascriptEnabled: true}, 'errors/',
lessTester.testErrors, null],
// [{
// // TODO: Change this to rewriteUrls: 'all' once the relativeUrls option is removed
// relativeUrls: true,
// silent: true,
// javascriptEnabled: true
// }, '_main/'],
// [{}, 'namespacing/'],
// [{
// math: 'strict-legacy'
// }, 'math/strict-legacy/'],
// [{
// math: 'parens'
// }, 'math/strict/'],
// [{
// math: 'parens-division'
// }, 'math/parens-division/'],
// // Use legacy strictMath: true here to demonstrate it still works
// [{strictMath: true, strictUnits: true, javascriptEnabled: true}, 'errors/',
// lessTester.testErrors, null],

[{math: 'strict', strictUnits: true, javascriptEnabled: false}, 'no-js-errors/',
lessTester.testErrors, null],
[{math: 'strict', dumpLineNumbers: 'comments'}, 'debug/', null,
function(name) { return name + '-comments'; }],
[{math: 'strict', dumpLineNumbers: 'mediaquery'}, 'debug/', null,
function(name) { return name + '-mediaquery'; }],
[{math: 'strict', dumpLineNumbers: 'all'}, 'debug/', null,
function(name) { return name + '-all'; }],
// TODO: Change this to rewriteUrls: false once the relativeUrls option is removed
[{math: 'strict', relativeUrls: false, rootpath: 'folder (1)/'}, 'static-urls/'],
[{math: 'strict', compress: true}, 'compression/'],
[{math: 0, strictUnits: true}, 'strict-units/'],
[{}, 'legacy/'],
[{math: 'strict', strictUnits: true, sourceMap: true, globalVars: true }, 'sourcemaps/',
lessTester.testSourcemap, null, null,
function(filename, type, baseFolder) {
if (type === 'vars') {
return path.join(baseFolder, filename) + '.json';
}
return path.join('test/sourcemaps', filename) + '.json';
}],
// [{math: 'strict', strictUnits: true, javascriptEnabled: false}, 'no-js-errors/',
// lessTester.testErrors, null],
// [{math: 'strict', dumpLineNumbers: 'comments'}, 'debug/', null,
// function(name) { return name + '-comments'; }],
// [{math: 'strict', dumpLineNumbers: 'mediaquery'}, 'debug/', null,
// function(name) { return name + '-mediaquery'; }],
// [{math: 'strict', dumpLineNumbers: 'all'}, 'debug/', null,
// function(name) { return name + '-all'; }],
// // TODO: Change this to rewriteUrls: false once the relativeUrls option is removed
// [{math: 'strict', relativeUrls: false, rootpath: 'folder (1)/'}, 'static-urls/'],
// [{math: 'strict', compress: true}, 'compression/'],
// [{math: 0, strictUnits: true}, 'strict-units/'],
// [{}, 'legacy/'],
// [{math: 'strict', strictUnits: true, sourceMap: true, globalVars: true }, 'sourcemaps/',
// lessTester.testSourcemap, null, null,
// function(filename, type, baseFolder) {
// if (type === 'vars') {
// return path.join(baseFolder, filename) + '.json';
// }
// return path.join('test/sourcemaps', filename) + '.json';
// }],

[{math: 'strict', strictUnits: true, globalVars: true }, 'import/json/',
lessTester.testImports, null, true,
function(filename, type, baseFolder) {
return path.join(baseFolder, filename) + '.json';
}],
[{math: 'strict', strictUnits: true, sourceMap: {sourceMapFileInline: true}},
'sourcemaps-empty/', lessTester.testEmptySourcemap],
[{math: 'strict', strictUnits: true, sourceMap: {disableSourcemapAnnotation: true}},
'sourcemaps-disable-annotation/', lessTester.testSourcemapWithoutUrlAnnotation],
[{globalVars: true, banner: '/**\n * Test\n */\n'}, 'globalVars/',
null, null, null, function(name, type, baseFolder) { return path.join(baseFolder, name) + '.json'; }],
[{modifyVars: true}, 'modifyVars/',
null, null, null, function(name, type, baseFolder) { return path.join(baseFolder, name) + '.json'; }],
[{urlArgs: '424242'}, 'url-args/'],
[{rewriteUrls: 'all'}, 'rewrite-urls-all/'],
[{rewriteUrls: 'local'}, 'rewrite-urls-local/'],
[{rootpath: 'http://example.com/assets/css/', rewriteUrls: 'all'}, 'rootpath-rewrite-urls-all/'],
[{rootpath: 'http://example.com/assets/css/', rewriteUrls: 'local'}, 'rootpath-rewrite-urls-local/'],
[{paths: ['test/data/', 'test/less/import/']}, 'include-path/'],
[{paths: 'test/data/'}, 'include-path-string/'],
[{plugin: 'test/plugins/postprocess/'}, 'postProcessorPlugin/'],
[{plugin: 'test/plugins/preprocess/'}, 'preProcessorPlugin/'],
[{plugin: 'test/plugins/visitor/'}, 'visitorPlugin/'],
[{plugin: 'test/plugins/filemanager/'}, 'filemanagerPlugin/'],
[{}, 'no-strict-math/'],
[{}, '3rd-party/']
// [{math: 'strict', strictUnits: true, globalVars: true }, '_main/import/json/',
// lessTester.testImports, null, true,
// function(filename, type, baseFolder) {
// return path.join(baseFolder, filename) + '.json';
// }],
// [{math: 'strict', strictUnits: true, sourceMap: {sourceMapFileInline: true}},
// 'sourcemaps-empty/', lessTester.testEmptySourcemap],
// [{math: 'strict', strictUnits: true, sourceMap: {disableSourcemapAnnotation: true}},
// 'sourcemaps-disable-annotation/', lessTester.testSourcemapWithoutUrlAnnotation],
// [{globalVars: true, banner: '/**\n * Test\n */\n'}, 'globalVars/',
// null, null, null, function(name, type, baseFolder) { return path.join(baseFolder, name) + '.json'; }],
// [{modifyVars: true}, 'modifyVars/',
// null, null, null, function(name, type, baseFolder) { return path.join(baseFolder, name) + '.json'; }],
// [{urlArgs: '424242'}, 'url-args/'],
// [{rewriteUrls: 'all'}, 'rewrite-urls-all/'],
// [{rewriteUrls: 'local'}, 'rewrite-urls-local/'],
// [{rootpath: 'http://example.com/assets/css/', rewriteUrls: 'all'}, 'rootpath-rewrite-urls-all/'],
// [{rootpath: 'http://example.com/assets/css/', rewriteUrls: 'local'}, 'rootpath-rewrite-urls-local/'],
// [{paths: ['test/less/data/', 'test/less/_main/import/']}, 'include-path/'],
// [{paths: 'test/less/data/'}, 'include-path-string/'],
// [{plugin: 'test/plugins/postprocess/'}, 'postProcessorPlugin/'],
// [{plugin: 'test/plugins/preprocess/'}, 'preProcessorPlugin/'],
// [{plugin: 'test/plugins/visitor/'}, 'visitorPlugin/'],
// [{plugin: 'test/plugins/filemanager/'}, 'filemanagerPlugin/'],
// [{}, 'no-strict-math/'],
// [{}, '3rd-party/'],
[{ processImports: false }, 'process-imports/']
];
testMap.forEach(function(args) {
lessTester.runTestSet.apply(lessTester, args)
});
lessTester.testSyncronous({syncImport: true}, 'import');
lessTester.testSyncronous({syncImport: true}, 'plugin');
lessTester.testSyncronous({syncImport: true}, '_main/import');
lessTester.testSyncronous({syncImport: true}, '_main/plugin');
lessTester.testSyncronous({syncImport: true}, 'math/strict-legacy/css');
lessTester.testNoOptions();
lessTester.testJSImport();
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-1.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-undefined();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-1.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Function 'test-undefined' is undefined in {path}functions-1.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-undefined();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-10-keyword.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-keyword();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-10-keyword.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Keyword node returned by a function is not valid here in {path}functions-10-keyword.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-keyword();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-11-operation.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-operation();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-11-operation.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Operation node returned by a function is not valid here in {path}functions-11-operation.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-operation();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-12-quoted.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-quoted();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-12-quoted.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Quoted node returned by a function is not valid here in {path}functions-12-quoted.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-quoted();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-13-selector.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-selector();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-13-selector.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Selector node returned by a function is not valid here in {path}functions-13-selector.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-selector();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-14-url.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-url();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-14-url.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Url node returned by a function is not valid here in {path}functions-14-url.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-url();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-15-value.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-value();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-15-value.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Value node returned by a function is not valid here in {path}functions-15-value.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-value();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-3-assignment.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-assignment();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-3-assignment.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Assignment node returned by a function is not valid here in {path}functions-3-assignment.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-assignment();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-4-call.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-call();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-4-call.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Function 'foo' is undefined in {path}functions-4-call.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-call();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-5-color.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-color();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-5-color.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Color node returned by a function is not valid here in {path}functions-5-color.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-color();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-6-condition.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-condition();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-6-condition.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Condition node returned by a function is not valid here in {path}functions-6-condition.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-condition();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-7-dimension.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-dimension();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-7-dimension.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Dimension node returned by a function is not valid here in {path}functions-7-dimension.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-dimension();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-8-element.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-element();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-8-element.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Element node returned by a function is not valid here in {path}functions-8-element.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-element();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-9-expression.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes";
@plugin "../_main/plugin/plugin-tree-nodes";
test-expression();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/functions-9-expression.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Expression node returned by a function is not valid here in {path}functions-9-expression.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes";
1 @plugin "../_main/plugin/plugin-tree-nodes";
2 test-expression();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/root-func-undefined-2.less
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@plugin "../plugin/plugin-tree-nodes.js";
@plugin "../_main/plugin/plugin-tree-nodes.js";
test-undefined();
2 changes: 1 addition & 1 deletion packages/less/test/less/errors/root-func-undefined-2.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SyntaxError: Function 'test-undefined' is undefined in {path}root-func-undefined-2.less on line 2, column 1:
1 @plugin "../plugin/plugin-tree-nodes.js";
1 @plugin "../_main/plugin/plugin-tree-nodes.js";
2 test-undefined();
3 changes: 3 additions & 0 deletions packages/less/test/less/process-imports/google.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');

.a { b: c; }
2 changes: 1 addition & 1 deletion packages/less/test/less/static-urls/urls.less
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
url: url(@a);
}

@import "../import/import-and-relative-paths-test";
@import "../_main/import/import-and-relative-paths-test";
Loading

0 comments on commit 26610ff

Please sign in to comment.