Commit 60f7a43f authored by Mike Greiling's avatar Mike Greiling

fix incorrect equals assertion

parent e9bd861f
...@@ -87,7 +87,7 @@ describe('Header CI Component', () => { ...@@ -87,7 +87,7 @@ describe('Header CI Component', () => {
vm.actions[0].isLoading = true; vm.actions[0].isLoading = true;
Vue.nextTick(() => { Vue.nextTick(() => {
expect(vm.$el.querySelector('.btn .fa-spinner').getAttribute('style')).toEqual(''); expect(vm.$el.querySelector('.btn .fa-spinner').getAttribute('style')).toBeFalsy();
done(); done();
}); });
}); });
......
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