mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 19:50:38 +02:00
Merge pull request #12696 from birarda/add-js-baker-quote-tests
add single quote tests to JS baking tests
This commit is contained in:
commit
0a1f07755e
1 changed files with 3 additions and 1 deletions
|
@ -66,6 +66,8 @@ void JSBakerTest::setTestCases() {
|
|||
_testCases.emplace_back("'abcd1234$%^&[](){}'\na", "'abcd1234$%^&[](){}'\na");
|
||||
_testCases.emplace_back("\"abcd1234$%^&[](){}\"\na", "\"abcd1234$%^&[](){}\"\na");
|
||||
_testCases.emplace_back("`abcd1234$%^&[](){}`\na", "`abcd1234$%^&[](){}`a");
|
||||
_testCases.emplace_back("\' \';", "\' \';");
|
||||
_testCases.emplace_back("\'//single line comment\nvar b=2;\';", "\'//single line comment\nvar b=2;\';");
|
||||
|
||||
// Edge Cases
|
||||
|
||||
|
|
Loading…
Reference in a new issue