Skip to content

Commit 1e18225

Browse files
committed
Update spec descriptions
1 parent ac439cb commit 1e18225

3 files changed

+7
-7
lines changed

src/services/schema-form-decorators.provider.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ describe('schema-form-decorators.provider.js', function() {
2929
// });
3030
// });
3131

32-
describe('#legacy #defineDecorator', function() {
32+
describe('legacy defineDecorator', function() {
3333
it('should enable you to create new decorator directives', function() {
3434
module(function(schemaFormDecoratorsProvider) {
3535
schemaFormDecoratorsProvider.defineDecorator('foobar', { 'foo': { 'template': '/bar.html', 'builder': []}});

src/services/schema-form.provider.spec.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ chai.should();
44

55
describe('schema-form.provider.js', function() {
66
beforeEach(module('schemaForm'));
7-
describe('#defaults()', function() {
7+
describe('defaults()', function() {
88
it('should generate default form def from a schema', function() {
99
inject(function(schemaForm) {
1010
var schema = {
@@ -321,7 +321,7 @@ describe('schema-form.provider.js', function() {
321321
});
322322
});
323323

324-
describe('#appendRule() and #prependRule()', function() {
324+
describe('appendRule() and prependRule()', function() {
325325
beforeEach(module('schemaForm'));
326326
beforeEach(
327327
module(function($sceProvider) {
@@ -378,8 +378,8 @@ describe('schema-form.provider.js', function() {
378378
});
379379
});
380380

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() {
383383
module(function(schemaFormProvider) {
384384
schemaFormProvider.postProcess(function(form) {
385385
form.postProcess = true;
@@ -408,7 +408,7 @@ describe('schema-form.provider.js', function() {
408408
});
409409
});
410410

411-
describe('#merge()', function() {
411+
describe('merge()', function() {
412412
it('should merge schema and form def', function() {
413413
inject(function(schemaForm) {
414414
var schema = {

src/services/sf-error-message.provider.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ chai.should();
55
describe('sf-error-message.provider.js', function() {
66
beforeEach(module('schemaForm'));
77

8-
describe('#sfErrorMessage', function() {
8+
describe('sfErrorMessage', function() {
99
it('should fall back to global default message if no other is supplied', function() {
1010
inject(function(sfErrorMessage) {
1111
var result = sfErrorMessage.interpolate(

0 commit comments

Comments
 (0)