Fix #68 - change load order of syntax files

I'm not sure what's the root cause of this, but this seems to work.
This commit is contained in:
Adriaan Zonnenberg
2018-03-03 19:45:09 +01:00
parent 3cc4ac7b02
commit a279172752
2 changed files with 7 additions and 2 deletions

View File

@@ -90,10 +90,15 @@ Execute:
Given vue (SCSS region):
<style lang="scss">
$green: #42b983;
button {
background-color: $green;
}
</style>
Execute:
AssertEqual 'scssVariable', SyntaxAt(2, 1)
AssertEqual 'scssVariable', SyntaxOf('$green', 1)
AssertEqual 'scssVariable', SyntaxOf('$green', 2)
AssertEqual 'vueSurroundingTag', SyntaxAt(1, 1)
#