Remove a test pause and a lint error from #14199 (#14222)

This commit is contained in:
Phil Renaud
2022-08-22 16:51:49 -04:00
committed by GitHub
parent 2eaf3d7270
commit d752a6d5cc
2 changed files with 1 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ export default class IndexController extends Controller.extend(Sortable) {
@computed('tasks.@each.services')
get taskServices() {
return this.get('tasks')
.map((t) => (t && t.get('services') || []).toArray())
.map((t) => ((t && t.get('services')) || []).toArray())
.flat()
.compact();
}

View File

@@ -155,7 +155,6 @@ module('Acceptance | regions (many)', function (hooks) {
const newRegion = server.db.regions[1].id;
await Allocation.visit({ id: server.db.allocations[0].id });
await this.pauseTest();
await selectChoose('[data-test-region-switcher-parent]', newRegion);