mirror of
https://github.com/lubosz/overte.git
synced 2025-04-07 19:22:39 +02:00
Update JSBakerTest.cpp
This commit is contained in:
parent
305719da24
commit
16a75d20dc
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ void JSBakerTest::setTestCases() {
|
|||
_testCases.emplace_back("a/*multi\n line \n comment*/ b", "ab");
|
||||
_testCases.emplace_back("a/b", "a/b");
|
||||
_testCases.emplace_back("var a = 1;", "var a=1;"); // Multiple spaces omitted
|
||||
_testCases.emplace_back("var a= 1;", "var a=1;"); // Multiple tabs omitted
|
||||
_testCases.emplace_back("var a=\t\t\t1;", "var a=1;"); // Multiple tabs omitted
|
||||
|
||||
// Cases for space not omitted
|
||||
_testCases.emplace_back("var x", "var x");
|
||||
|
|
Loading…
Reference in a new issue