Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[test_utils] move StubBrowserStorage to a more central location #8020

Merged
merged 1 commit into from
Aug 18, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ui/public/chrome/api/__tests__/apps.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import expect from 'expect.js';

import setup from '../apps';
import StubBrowserStorage from '../../__tests__/fixtures/stub_browser_storage';
import StubBrowserStorage from 'test_utils/stub_browser_storage';

describe('Chrome API :: apps', function () {
describe('#get/setShowAppsLink()', function () {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/public/chrome/api/__tests__/nav.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import expect from 'expect.js';

import initChromeNavApi from 'ui/chrome/api/nav';
import StubBrowserStorage from '../../__tests__/fixtures/stub_browser_storage';
import StubBrowserStorage from 'test_utils/stub_browser_storage';

const basePath = '/someBasePath';

Expand Down