UI: Remove proxy tag tests again (#6359)

I thought #6343 would fix the flapping but it didn’t 😞
This commit is contained in:
Buck Doyle
2019-09-20 15:27:33 -05:00
committed by GitHub
parent a32172eee4
commit 9272cca7ab
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
import { run } from '@ember/runloop';
import { currentURL } from '@ember/test-helpers';
import { assign } from '@ember/polyfills';
import { module, test } from 'qunit';
import { module, skip, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
import Allocation from 'nomad-ui/tests/pages/allocations/detail';
@@ -140,7 +140,7 @@ module('Acceptance | allocation detail', function(hooks) {
assert.ok(Allocation.firstUnhealthyTask().hasUnhealthyDriver, 'Warning is shown');
});
test('proxy task has a proxy tag', async function(assert) {
skip('proxy task has a proxy tag', async function(assert) {
// Must create a new job as existing one has loaded and it contains the tasks
job = server.create('job', {
groupsCount: 1,

View File

@@ -1,5 +1,5 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { module, skip, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
import Task from 'nomad-ui/tests/pages/allocations/task/detail';
@@ -326,7 +326,7 @@ module('Acceptance | proxy task detail', function(hooks) {
await Task.visit({ id: allocation.id, name: taskState.name });
});
test('a proxy tag is shown', async function(assert) {
skip('a proxy tag is shown', async function(assert) {
assert.ok(Task.title.proxyTag.isPresent);
});
});