Return a default falsey value for unknown params based on param type

This commit is contained in:
Paul Kaplan 2017-12-06 11:21:00 -05:00
parent 8203eb2c91
commit 2d2b691b6f
2 changed files with 17 additions and 4 deletions

View file

@ -110,7 +110,9 @@ test('PushGetParam', t => {
th.pushParam('testParam', 'testValue');
t.strictEquals(th.peekStackFrame().params.testParam, 'testValue');
t.strictEquals(th.getParam('testParam'), 'testValue');
// Params outside of define stack always evaluate to null
t.strictEquals(th.getParam('nonExistentParam'), null);
t.end();
});