Skip to content

Commit 6adaa62

Browse files
committed
Fix integration test
1 parent 586499c commit 6adaa62

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/integration/test.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ describe('integration', function () {
440440
assert.equal(breadcrumbs.length, 1);
441441

442442
assert.equal(breadcrumbs[0].category, 'ui.click');
443-
assert.equal(breadcrumbs[0].message, 'body > form#foo-form > input[name="foo"][placeholder="lol"]');
443+
assert.equal(breadcrumbs[0].message, 'body > form#foo-form > input[name="foo"]');
444444
}
445445
);
446446
});
@@ -479,7 +479,7 @@ describe('integration', function () {
479479
assert.equal(breadcrumbs.length, 1);
480480

481481
assert.equal(breadcrumbs[0].category, 'ui.click');
482-
assert.equal(breadcrumbs[0].message, 'body > form#foo-form > input[name="foo"][placeholder="lol"]');
482+
assert.equal(breadcrumbs[0].message, 'body > form#foo-form > input[name="foo"]');
483483
}
484484
);
485485
});
@@ -558,7 +558,7 @@ describe('integration', function () {
558558
assert.equal(breadcrumbs.length, 1);
559559

560560
assert.equal(breadcrumbs[0].category, 'ui.input');
561-
assert.equal(breadcrumbs[0].message, 'body > form#foo-form > input[name="foo"][placeholder="lol"]');
561+
assert.equal(breadcrumbs[0].message, 'body > form#foo-form > input[name="foo"]');
562562
}
563563
);
564564
});
@@ -590,7 +590,7 @@ describe('integration', function () {
590590
assert.equal(breadcrumbs.length, 2);
591591

592592
assert.equal(breadcrumbs[0].category, 'ui.input');
593-
assert.equal(breadcrumbs[0].message, 'body > form#foo-form > input[name="foo"][placeholder="lol"]');
593+
assert.equal(breadcrumbs[0].message, 'body > form#foo-form > input[name="foo"]');
594594
}
595595
);
596596
});
@@ -640,13 +640,13 @@ describe('integration', function () {
640640
assert.equal(breadcrumbs.length, 3);
641641

642642
assert.equal(breadcrumbs[0].category, 'ui.input');
643-
assert.equal(breadcrumbs[0].message, 'body > form#foo-form > input[name="foo"][placeholder="lol"]');
643+
assert.equal(breadcrumbs[0].message, 'body > form#foo-form > input[name="foo"]');
644644

645645
assert.equal(breadcrumbs[1].category, 'ui.click');
646-
assert.equal(breadcrumbs[1].message, 'body > form#foo-form > input[name="foo"][placeholder="lol"]');
646+
assert.equal(breadcrumbs[1].message, 'body > form#foo-form > input[name="foo"]');
647647

648648
assert.equal(breadcrumbs[2].category, 'ui.input');
649-
assert.equal(breadcrumbs[2].message, 'body > form#foo-form > input[name="foo"][placeholder="lol"]');
649+
assert.equal(breadcrumbs[2].message, 'body > form#foo-form > input[name="foo"]');
650650

651651
}
652652
);

0 commit comments

Comments
 (0)