[javascriptcore-test262-automation] Changes from https://github.com/webkit/webkit.git at sha 54374edc2b on Mon Oct 15 2018 18:40:44 GMT+0000 (Coordinated Universal Time)

This commit is contained in:
test262-automation 2018-10-15 18:43:53 +00:00 committed by Rick Waldron
parent ad672f6246
commit 93e27d5654
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
function shouldBe(actual, expected) {
if (actual !== expected)
throw new Error('bad value: ' + actual);
}
shouldBe(JSON.stringify(), undefined);
shouldBe(JSON.stringify(undefined), undefined);