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

Commit

Permalink
Update configuration to support blanket.js test coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmiles committed Jan 11, 2014
1 parent 2f30b62 commit d507da8
Show file tree
Hide file tree
Showing 6 changed files with 485 additions and 5 deletions.
4 changes: 3 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ module.exports = function(grunt) {
main: {
files: [
// copy dist to tests
{ expand: true, cwd: 'dist', src: '*', dest: 'tests/lib/' },
// { expand: true, cwd: 'dist', src: '*', dest: 'tests/lib/' },
{ expand: true, cwd: 'src/css', src: '*', dest: 'tests/lib/' },
{ expand: true, cwd: 'src/js', src: '*', dest: 'tests/lib/' },
// copy latest libs to tests
{ expand: true, cwd: 'public/bower_components/jquery', src: 'jquery.js', dest: 'tests/lib/' },
{ expand: true, cwd: 'public/bower_components/bootstrap-datepicker/js', src: 'bootstrap-datepicker.js', dest: 'tests/lib/' },
Expand Down
35 changes: 35 additions & 0 deletions tests/lib/bootstrap-treeview.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/* =========================================================
* bootstrap-treeview.css v1.0.0
* =========================================================
* Copyright 2013 Jonathan Miles
* Project URL : http://www.jondmiles.com/bootstrap-treeview
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================= */

.list-group-item {
cursor: pointer;
}

/*.list-group-item:hover {
background-color: #f5f5f5;
}*/

span.indent {
margin-left: 10px;
margin-right: 10px;
}

span.icon {
margin-right: 5px;
}
Loading

0 comments on commit d507da8

Please sign in to comment.