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

Add global.navigator to test_helper.js #24

Merged
merged 1 commit into from
May 25, 2016
Merged
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
Add global navigator setting to modify the error, 'navigator is not d…
…efined', in testing with react-router link
  • Loading branch information
tsurupin committed Apr 21, 2016
commit d976e01015aea0860393e6da1b1e7c09c2c59952
1 change: 1 addition & 0 deletions test/test_helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import reducers from '../src/reducers';

global.document = jsdom.jsdom('<!doctype html><html><body></body></html>');
global.window = global.document.defaultView;
global.navigator = global.window.navigator;
const $ = _$(window);

chaiJquery(chai, chai.util, $);
Expand Down