@@ -4,7 +4,7 @@ chai.should();
4
4
5
5
describe ( 'schema-form.provider.js' , function ( ) {
6
6
beforeEach ( module ( 'schemaForm' ) ) ;
7
- describe ( '# defaults()' , function ( ) {
7
+ describe ( 'defaults()' , function ( ) {
8
8
it ( 'should generate default form def from a schema' , function ( ) {
9
9
inject ( function ( schemaForm ) {
10
10
var schema = {
@@ -321,7 +321,7 @@ describe('schema-form.provider.js', function() {
321
321
} ) ;
322
322
} ) ;
323
323
324
- describe ( '# appendRule() and # prependRule()' , function ( ) {
324
+ describe ( 'appendRule() and prependRule()' , function ( ) {
325
325
beforeEach ( module ( 'schemaForm' ) ) ;
326
326
beforeEach (
327
327
module ( function ( $sceProvider ) {
@@ -378,8 +378,8 @@ describe('schema-form.provider.js', function() {
378
378
} ) ;
379
379
} ) ;
380
380
381
- describe ( '# postProcess()' , function ( ) {
382
- it ( 'should be enable post-processing of forms' , function ( ) {
381
+ describe ( 'postProcess()' , function ( ) {
382
+ it ( 'should enable post-processing of forms' , function ( ) {
383
383
module ( function ( schemaFormProvider ) {
384
384
schemaFormProvider . postProcess ( function ( form ) {
385
385
form . postProcess = true ;
@@ -408,7 +408,7 @@ describe('schema-form.provider.js', function() {
408
408
} ) ;
409
409
} ) ;
410
410
411
- describe ( '# merge()' , function ( ) {
411
+ describe ( 'merge()' , function ( ) {
412
412
it ( 'should merge schema and form def' , function ( ) {
413
413
inject ( function ( schemaForm ) {
414
414
var schema = {
0 commit comments