Commit 06bab908 authored by Robert Knight's avatar Robert Knight

Fix accidentally swapped "renders", "doesn't render" descriptions

parent 1d88138c
......@@ -74,13 +74,13 @@ describe('SearchInput', () => {
assert.isFalse(wrapper.exists('button'));
});
it('renders loading indicator when app is not in "loading" state', () => {
it('doesn\'t render loading indicator when app is not in "loading" state', () => {
fakeStore.isLoading.returns(false);
const wrapper = createSearchInput();
assert.isFalse(wrapper.exists('Spinner'));
});
it('doesn\'t render search button when app is not in "loading" state', () => {
it('renders search button when app is not in "loading" state', () => {
fakeStore.isLoading.returns(false);
const wrapper = createSearchInput();
assert.isTrue(wrapper.exists('button'));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment