Merge pull request #14512 from Manish-Giri/fix/add-tests-object-properties

Add test to prevent assignment to variable directly
pull/15355/head
Dylan 2017-06-12 22:00:37 -05:00 committed by GitHub
commit 4b15554a94
1 changed files with 1 additions and 0 deletions

View File

@ -4341,6 +4341,7 @@
"assert(typeof player === 'string', 'message: The variable <code>player</code> should be a string');",
"assert(player === 'Montana', 'message: The value of <code>player</code> should be \"Montana\"');",
"assert(/testObj\\s*?\\[.*?\\]/.test(code),'message: You should use bracket notation to access <code>testObj</code>');",
"assert(!code.match(/player\\s*=\\s*\"|\\'\\s*Montana\\s*\"|\\'\\s*;/gi),'message: You should not assign the value <code>Montana</code> to the variable <code>player</code> directly.');",
"assert(/testObj\\s*?\\[\\s*playerNumber\\s*\\]/.test(code),'message: You should be using the variable <code>playerNumber</code> in your bracket notation');"
],
"type": "waypoint",