mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 07:25:07 +00:00
LibJS: Reorganize tests into subfolders
This commit is contained in:
parent
21064a1883
commit
4c48c9d69d
213 changed files with 10 additions and 2 deletions
|
@ -1,49 +0,0 @@
|
|||
load("test-common.js");
|
||||
|
||||
try {
|
||||
assert(Object.isExtensible(new Proxy({}, { isExtensible: null })) === true);
|
||||
assert(Object.isExtensible(new Proxy({}, { isExtensible: undefined })) === true);
|
||||
assert(Object.isExtensible(new Proxy({}, {})) === true);
|
||||
|
||||
let o = {};
|
||||
let p = new Proxy(o, {
|
||||
isExtensible(target) {
|
||||
assert(target === o);
|
||||
return true;
|
||||
}
|
||||
});
|
||||
|
||||
Object.isExtensible(p);
|
||||
|
||||
// Invariants
|
||||
|
||||
o = {};
|
||||
p = new Proxy(o, {
|
||||
isExtensible(proxyTarget) {
|
||||
assert(proxyTarget === o);
|
||||
return true;
|
||||
},
|
||||
});
|
||||
|
||||
assert(Object.isExtensible(p) === true);
|
||||
Object.preventExtensions(o);
|
||||
|
||||
assertThrowsError(() => {
|
||||
Object.isExtensible(p);
|
||||
}, {
|
||||
error: TypeError,
|
||||
message: "Proxy handler's isExtensible trap violates invariant: return value must match the target's extensibility",
|
||||
});
|
||||
|
||||
p = new Proxy(o, {
|
||||
isExtensible(proxyTarget) {
|
||||
assert(proxyTarget === o);
|
||||
return false;
|
||||
},
|
||||
});
|
||||
assert(Object.isExtensible(p) === false);
|
||||
|
||||
console.log("PASS");
|
||||
} catch (e) {
|
||||
console.log("FAIL: " + e);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue