Add Symbol support to integrity testing routine (#4101)

Properties with Symbol caused assertion to fail

JerryScript-DCO-1.0-Signed-off-by: Rafal Walczyna r.walczyna@samsung.com
This commit is contained in:
Rafal Walczyna
2020-08-03 17:29:34 +02:00
committed by GitHub
parent e9b794f629
commit 4ce4b617fd
2 changed files with 3 additions and 1 deletions
@@ -26,3 +26,5 @@ obj[s2] = 3
assert(obj[s1] === 1);
assert(obj[s2] === undefined);
assert(delete obj[s1] === false);
assert(Object.isFrozen(obj));