Add spec for remote function with toString property

This commit is contained in:
Kevin Sawicki 2017-03-17 10:28:23 -07:00
parent 818738ce84
commit 648d3324fb
2 changed files with 8 additions and 1 deletions

View file

@ -0,0 +1,4 @@
function hello () {
}
hello.toString = 'hello'
module.exports = {functionWithToStringProperty: hello}