We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c8c4fd commit ea292aeCopy full SHA for ea292ae
test/network.js
@@ -7,8 +7,10 @@ describe('network', function () {
7
it('xhr', function (done) {
8
$('.eruda-clear-xhr').click()
9
util.ajax.get(window.location.toString(), function () {
10
- expect($('.eruda-requests .luna-data-grid-node')).toHaveLength(1)
11
- done()
+ setTimeout(function () {
+ expect($('.eruda-requests .luna-data-grid-node')).toHaveLength(1)
12
+ done()
13
+ }, 500)
14
})
15
16
0 commit comments