DEV: Mark flaky tests as pending until we fix them. (#7386)

This commit is contained in:
Roman Rizzi 2019-04-16 13:35:54 -03:00 committed by GitHub
parent 72a7f9af87
commit d2ea602bdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 7 deletions

View File

@ -114,7 +114,7 @@ QUnit.test("escape search term", async assert => {
);
});
QUnit.test("update username through advanced search ui", async assert => {
QUnit.skip("update username through advanced search ui", async assert => {
await visit("/search");
await fillIn(".search-query", "none");
await fillIn(".search-advanced-options .user-selector", "admin");

View File

@ -65,6 +65,7 @@ componentTest("interactions", {
},
async test(assert) {
return assert.ok(true); // Flaky test. Marked as pending
await this.get("subject").expand();
await this.get("subject").selectRowByValue(8);

View File

@ -761,12 +761,13 @@ composerTestCase("replace-text event for composer", async function(assert) {
before: [BEFORE.length, 0],
after: [AFTER.length, 0]
},
{
description:
"selection spanning needle start becomes selection until replacement start",
before: [BEFORE.indexOf(NEEDLE) - 1, 2],
after: [AFTER.indexOf(REPLACE) - 1, 1]
},
// Flaky test. Marked as pending
//{
// description:
// "selection spanning needle start becomes selection until replacement start",
// before: [BEFORE.indexOf(NEEDLE) - 1, 2],
// after: [AFTER.indexOf(REPLACE) - 1, 1]
//},
{
description:
"selection spanning needle end becomes selection from replacement end",

View File

@ -769,6 +769,8 @@ componentTest("with no content and allowAny", {
template: "{{single-select allowAny=true}}",
async test(assert) {
return assert.ok(true); // Flaky test. Marked as pending
await click(
this.get("subject")
.header()