im trying to disable the weak module with the following
var phantom = require('x-ray-phantom');
var x = require('x-ray')();
var options = {
dnodeOpts: {
weak: false
}
};
x.driver(phantom(options));
I keep getting an
Error: Cannot find module 'weak'
I'm going to assume I'm passing the option incorrectly?