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 2554bc6 commit 273ff85Copy full SHA for 273ff85
tests/automatic_tests/crash_dump/mocha_test.js
@@ -34,8 +34,8 @@ describe('crash dump', function() {
34
35
it('should work fine', function() {
36
assert.equal(result.length, 1);
37
- var r = result[0].indexOf("renderer");
38
- assert.equal(r, -1);
+ var r = result[0].indexOf("dmp");
+ assert.notEqual(r, -1);
39
});
40
41
})
@@ -58,7 +58,7 @@ describe('crash dump', function() {
58
59
60
assert.equal(result.length, 2);
61
- var r = result[1].indexOf("renderer");
+ var r = result[1].indexOf("dmp");
62
assert.notEqual(r, -1);
63
64
0 commit comments