benderjs-mocha
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -125,3 +125,7 @@ /** | ||
if ( window.location.hash && window.location.hash !== '#child' ) { | ||
return decodeURIComponent( window.location.hash.substr( 1 ).split( '-' ).slice( 1 ).join( '-' ) ); | ||
var hash = decodeURIComponent( window.location.hash.substr( 1 ) ); | ||
hash = hash.split( ' - ' ).join( ' ' ); | ||
return hash; | ||
} | ||
@@ -128,0 +132,0 @@ } |
{ | ||
"name": "benderjs-mocha", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Adapter for Mocha testing framework for Bender.js", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
10502
172