mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 20:08:41 +00:00
24 lines
458 B
Plaintext
24 lines
458 B
Plaintext
|
--TEST--
|
||
|
Test V8Js::setModuleLoader : Path normalisation #002
|
||
|
--SKIPIF--
|
||
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
$JS = <<< EOT
|
||
|
var foo = require("../../../test");
|
||
|
EOT;
|
||
|
|
||
|
$v8 = new V8Js();
|
||
|
$v8->setModuleLoader(function($module) {
|
||
|
print("setModuleLoader called for ".$module."\n");
|
||
|
return 'exports.bar = 23;';
|
||
|
});
|
||
|
|
||
|
$v8->executeString($JS, 'module.js');
|
||
|
?>
|
||
|
===EOF===
|
||
|
--EXPECT--
|
||
|
setModuleLoader called for test
|
||
|
===EOF===
|