Fixed tests

refs 4a53587f3b

- updated tests to use `settings.shared_views` in place of `user.accessibility`
This commit is contained in:
Kevin Ansfield 2020-06-04 21:43:54 +01:00
parent 4a53587f3b
commit db8b913e2d
1 changed files with 5 additions and 4 deletions

View File

@ -156,16 +156,17 @@ describe('Acceptance: Content', function () {
}); });
it('can navigate to custom views', async function () { it('can navigate to custom views', async function () {
admin.accessibility = JSON.stringify({ this.server.create('setting', {
views: [{ type: 'blog',
key: 'shared_views',
value: JSON.stringify([{
route: 'posts', route: 'posts',
name: 'My posts', name: 'My posts',
filter: { filter: {
author: admin.slug author: admin.slug
} }
}] }])
}); });
admin.save();
await visit('/posts'); await visit('/posts');