Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Fix breaking test due to missing i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
Gina Contrino committed Oct 12, 2017
1 parent e41c10a commit 3b57aef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/proxyDialog/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { expect } from 'chai';
import { mount } from 'enzyme';
import { spy, mock } from 'sinon';

import i18n from '../../i18n';
import ProxyDialog from './';

describe('ProxyDialog', () => {
Expand All @@ -14,6 +14,7 @@ describe('ProxyDialog', () => {
callback: spy(),
closeDialog: spy(),
authInfo: { host: 'someProxy.com' },
i18n,
};
wrapper = mount(<ProxyDialog {...props} />);
});
Expand Down

0 comments on commit 3b57aef

Please sign in to comment.