0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-19 22:25:19 +00:00
phpv8/tests/commonjs_node_compat_003.phpt

28 lines
451 B
Plaintext
Raw Normal View History

2017-11-12 15:27:50 +00:00
--TEST--
Test V8Js::setModuleLoader : delete module.exports yields undefined
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$v8 = new V8Js();
$v8->setModuleLoader(function ($moduleName) {
return <<<'EOJS'
delete module.exports;
EOJS
;
});
$v8->executeString(<<<'EOJS'
var result = require('foo');
var_dump(typeof result);
EOJS
);
?>
===EOF===
--EXPECT--
string(9) "undefined"
===EOF===