fixed scss lint & ide_tree_spec

This commit is contained in:
Phil Hughes 2018-04-23 10:51:44 +01:00
parent eb8903a1d7
commit cfae2d755c
No known key found for this signature in database
GPG Key ID: 32245528C52E0F9F
2 changed files with 0 additions and 12 deletions

View File

@ -188,9 +188,6 @@
.ide-sidebar-link {
&.active {
color: $color-700;
}
&.active {
box-shadow: inset 3px 0 $color-700;
}
}

View File

@ -28,15 +28,6 @@ describe('IdeRepoTree', () => {
resetStore(vm.$store);
});
it('renders loading', done => {
vm.currentTree.loading = true;
vm.$nextTick(() => {
expect(vm.$el.querySelectorAll('.multi-file-loading-container').length).toBe(3);
done();
});
});
it('renders list of files', () => {
expect(vm.$el.textContent).toContain('fileName');
});