Skip to content

Commit e18dc1d

Browse files
committed
OSX' case-insensitive file system strikes again.
Note: This is only an issue with the test itself, there is no issue with runtime behavior.
1 parent cd16109 commit e18dc1d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/handlers/__tests__/propDocblockHandler-test.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
jest.autoMockOff();
1414
jest.mock('../../Documentation');
1515

16-
describe('propDocblockHandler', () => {
16+
describe('propDocBlockHandler', () => {
1717
var utils;
1818
var documentation;
19-
var propDocblockHandler;
19+
var propDocBlockHandler;
2020

2121
beforeEach(() => {
2222
utils = require('../../../tests/utils');
2323
documentation = new (require('../../Documentation'));
24-
propDocblockHandler = require('../propDocblockHandler');
24+
propDocBlockHandler = require('../propDocBlockHandler');
2525
});
2626

2727
function parse(definition) {
@@ -50,7 +50,7 @@ describe('propDocblockHandler', () => {
5050
'})'
5151
].join('\n'));
5252

53-
propDocblockHandler(documentation, definition);
53+
propDocBlockHandler(documentation, definition);
5454
expect(documentation.descriptors).toEqual({
5555
foo: {
5656
description: 'Foo comment'
@@ -76,7 +76,7 @@ describe('propDocblockHandler', () => {
7676
'})'
7777
].join('\n'));
7878

79-
propDocblockHandler(documentation, definition);
79+
propDocBlockHandler(documentation, definition);
8080
expect(documentation.descriptors).toEqual({
8181
foo: {
8282
description:
@@ -104,7 +104,7 @@ describe('propDocblockHandler', () => {
104104
'})'
105105
].join('\n'));
106106

107-
propDocblockHandler(documentation, definition);
107+
propDocBlockHandler(documentation, definition);
108108
expect(documentation.descriptors).toEqual({
109109
foo: {
110110
description: 'Foo comment'
@@ -128,7 +128,7 @@ describe('propDocblockHandler', () => {
128128
'})'
129129
].join('\n'));
130130

131-
propDocblockHandler(documentation, definition);
131+
propDocBlockHandler(documentation, definition);
132132
expect(documentation.descriptors).toEqual({
133133
foo: {
134134
description: 'Foo comment'
@@ -152,7 +152,7 @@ describe('propDocblockHandler', () => {
152152
'})'
153153
].join('\n'));
154154

155-
propDocblockHandler(documentation, definition);
155+
propDocBlockHandler(documentation, definition);
156156
expect(documentation.descriptors).toEqual({
157157
foo: {
158158
description: 'Foo comment'
@@ -173,7 +173,7 @@ describe('propDocblockHandler', () => {
173173
'})'
174174
].join('\n'));
175175

176-
propDocblockHandler(documentation, definition);
176+
propDocBlockHandler(documentation, definition);
177177
expect(documentation.descriptors).toEqual({
178178
foo: {
179179
description: 'Foo comment'
@@ -189,7 +189,7 @@ describe('propDocblockHandler', () => {
189189
].join('\n'));
190190

191191
expect(function() {
192-
propDocblockHandler(documentation, definition);
192+
propDocBlockHandler(documentation, definition);
193193
}).not.toThrow();
194194
});
195195
});

0 commit comments

Comments
 (0)