You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when writing a test with prototype.js(version 1.6.3). testem version is 0.2.36
execute testem ci
result of testm ci as below:
# Launching Firefox
#
TAP version 13
ok 1 - Firefox "undefined"
# Launching Chrome
# ..
ok 2 - Chrome undefined
ok 3 - Chrome undefined
cause of issue
The cause of this issue is that the Array.ptototype.toJSON implemented in prototype.js returns invalid JSON object. And in testem, the test result handle as a string object.
issues
when writing a test with prototype.js(version 1.6.3). testem version is 0.2.36
execute
testem ci
result of
testm ci
as below:cause of issue
The cause of this issue is that the
Array.ptototype.toJSON
implemented inprototype.js
returns invalid JSON object. And in testem, the test result handle as a string object.the version of
prototype.js
is later than 1.7, this issue does't reproduce.see: prototypejs/prototype@038a298
I think, This issue is not a
testem
bug, but also notprototype.js
bug.So, I want you to add known issue of manual.
how to avoid:
*.js
file. this file overwirteArray.ptototype.toJSON
I name this file
compatible.js
compatible.js
after includeptototype.js
and execute
testem ci
. it iworks well.The text was updated successfully, but these errors were encountered: