Revert "Move old stylus tests to new extensions"

This reverts commit 79a53736bb.
This commit is contained in:
David Glasser
2015-07-16 00:37:08 -07:00
parent 3a678154d9
commit 36f4656ecb
4 changed files with 21 additions and 21 deletions

View File

@@ -23,8 +23,8 @@ Package.onTest(function (api) {
api.use(['tinytest', 'stylus', 'test-helpers', 'templating']);
api.addFiles([
'stylus_tests.html',
'stylus_tests.main.styl',
'stylus_tests.styl',
'stylus_tests.import.styl',
'stylus_tests.js'
],'client');
});

View File

@@ -0,0 +1,5 @@
// Variable used in stylus_test.styl
importDashy = dashed
.stylus-overwrite-color
font-size: 20px !important

View File

@@ -1,16 +0,0 @@
@import "stylus_tests.styl"
#stylus-tests
zoom: 1
dashy = dashed
.stylus-dashy-left-border
border-left: 1px dashy black
.stylus-overwrite-size
// This property is overwritten in stylus_test.import.styl
font-size: 10px
.stylus-import-dashy-border
border-left: 1px importDashy black

View File

@@ -1,5 +1,16 @@
// Variable used in stylus_test.styl
importDashy = dashed
@import "stylus_tests.import.styl"
.stylus-overwrite-color
font-size: 20px !important
#stylus-tests
zoom: 1
dashy = dashed
.stylus-dashy-left-border
border-left: 1px dashy black
.stylus-overwrite-size
// This property is overwritten in stylus_test.import.styl
font-size: 10px
.stylus-import-dashy-border
border-left: 1px importDashy black