yabble icon indicating copy to clipboard operation
yabble copied to clipboard

Some tests are failing

Open ghost opened this issue 15 years ago • 3 comments

I use 64-bit Arch Linux and Chromium 5.0.342.9 (43360).

Modules/1.0 – all failed Modules/1.1.1 – all failed Modules/1.1.1 Wrapped – 9 passed, 3 failed Async/A – all failed determineShallowDependencies() – all failed

The error that I see most often is “Died on test #1: NETWORK_ERR: XMLHttpRequest Exception 101.”, but there’s also stuff like “FAIL module.uri is absolute and ends with program.js”.

ghost avatar Apr 18 '10 09:04 ghost

Thanks! I'll take a look into it when I can.

jbrantly avatar Apr 18 '10 15:04 jbrantly

Sorry for the delay. I had someone else try the tests (I didn't have Chromium handy) and they passed. The error sounds like a cross-domain issue perhaps, or something similar. If you visit the page at http://jbrantly.github.com/yabble/test/modules1.0/index.html do the tests still fail?

jbrantly avatar May 14 '10 02:05 jbrantly

I have the same problem - test cases fail or are not listed at all. To test offline, I have written a small node.js server:

var connect = require('connect')

dir = process.argv[2]

connect(
    connect.static(dir)
).listen(3000)

I tested on Mac OS 10.6 with Google Chrome 12 and Firefox 4.0.

akidee avatar May 10 '11 21:05 akidee