Skip to content

Commit

Permalink
Fix order after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-ju committed Jun 13, 2023
1 parent dfef4e1 commit d3a9db1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
9 changes: 3 additions & 6 deletions packages/components/tests/acceptance/percy-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,12 @@ module('Acceptance | Percy test', function (hooks) {
await visit('/components/segmented-group');
await percySnapshot('Segmented Group');

await visit('/components/side-nav');
await percySnapshot('SideNav');

await visit('/components/segmented-group');
await percySnapshot('Segmented Group');

await visit('/components/separator');
await percySnapshot('Separator');

await visit('/components/side-nav');
await percySnapshot('SideNav');

await visit('/components/stepper');
await percySnapshot('Stepper');

Expand Down
8 changes: 4 additions & 4 deletions packages/components/tests/dummy/app/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ Router.map(function () {
});
this.route('modal');
this.route('pagination');
this.route('reveal');
this.route('segmented-group');
this.route('separator');
this.route('side-nav');
this.route('stepper');
this.route('table');
this.route('tag');
this.route('toast');
this.route('tabs');
this.route('tooltip');
this.route('side-nav');
this.route('segmented-group');
this.route('reveal');
this.route('separator');
});
this.route('layouts', function () {
this.route('app-frame');
Expand Down

0 comments on commit d3a9db1

Please sign in to comment.