Skip to content
This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Commit d507da8

Browse files
committed
Update configuration to support blanket.js test coverage report
1 parent 2f30b62 commit d507da8

6 files changed

Lines changed: 485 additions & 5 deletions

File tree

Gruntfile.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ module.exports = function(grunt) {
3535
main: {
3636
files: [
3737
// copy dist to tests
38-
{ expand: true, cwd: 'dist', src: '*', dest: 'tests/lib/' },
38+
// { expand: true, cwd: 'dist', src: '*', dest: 'tests/lib/' },
39+
{ expand: true, cwd: 'src/css', src: '*', dest: 'tests/lib/' },
40+
{ expand: true, cwd: 'src/js', src: '*', dest: 'tests/lib/' },
3941
// copy latest libs to tests
4042
{ expand: true, cwd: 'public/bower_components/jquery', src: 'jquery.js', dest: 'tests/lib/' },
4143
{ expand: true, cwd: 'public/bower_components/bootstrap-datepicker/js', src: 'bootstrap-datepicker.js', dest: 'tests/lib/' },

tests/lib/bootstrap-treeview.css

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/* =========================================================
2+
* bootstrap-treeview.css v1.0.0
3+
* =========================================================
4+
* Copyright 2013 Jonathan Miles
5+
* Project URL : http://www.jondmiles.com/bootstrap-treeview
6+
*
7+
* Licensed under the Apache License, Version 2.0 (the "License");
8+
* you may not use this file except in compliance with the License.
9+
* You may obtain a copy of the License at
10+
*
11+
* http://www.apache.org/licenses/LICENSE-2.0
12+
*
13+
* Unless required by applicable law or agreed to in writing, software
14+
* distributed under the License is distributed on an "AS IS" BASIS,
15+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
* See the License for the specific language governing permissions and
17+
* limitations under the License.
18+
* ========================================================= */
19+
20+
.list-group-item {
21+
cursor: pointer;
22+
}
23+
24+
/*.list-group-item:hover {
25+
background-color: #f5f5f5;
26+
}*/
27+
28+
span.indent {
29+
margin-left: 10px;
30+
margin-right: 10px;
31+
}
32+
33+
span.icon {
34+
margin-right: 5px;
35+
}

0 commit comments

Comments
 (0)