Skip to content

Commit

Permalink
fix: linting issues and remove remainidn pauseTest
Browse files Browse the repository at this point in the history
  • Loading branch information
LevelbossMike committed Feb 17, 2022
1 parent a1b2013 commit 02218c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 5 additions & 1 deletion ui/app/controllers/csi/volumes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@ export default class IndexController extends Controller.extend(
@action
gotoVolume(volume, event) {
lazyClick([
() => this.transitionToRoute('csi.volumes.volume', volume.get('idWithNamespace')),
() =>
this.transitionToRoute(
'csi.volumes.volume',
volume.get('idWithNamespace')
),
event,
]);
}
Expand Down
1 change: 0 additions & 1 deletion ui/app/controllers/jobs/job/task-group.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import Controller from '@ember/controller';
import { action, computed, get } from '@ember/object';
import { scheduleOnce } from '@ember/runloop';
import intersection from 'lodash.intersection';
import { qpBuilder } from 'nomad-ui/utils/classes/query-params';
import Sortable from 'nomad-ui/mixins/sortable';
import Searchable from 'nomad-ui/mixins/searchable';
import WithNamespaceResetting from 'nomad-ui/mixins/with-namespace-resetting';
Expand Down
1 change: 0 additions & 1 deletion ui/tests/acceptance/regions-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ module('Acceptance | regions (many)', function (hooks) {

await Allocation.visit({ id: server.db.allocations[0].id });

await this.pauseTest();
await selectChoose('[data-test-region-switcher-parent]', newRegion);

assert.ok(currentURL().includes('/jobs?'), 'Back at the jobs page');
Expand Down

0 comments on commit 02218c6

Please sign in to comment.