mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
chore(jsdoc): fix filename capitalization
This commit is contained in:
parent
19c468a901
commit
7565dfd53c
@ -13,6 +13,7 @@
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
describe('function expressions', () => {
|
||||
function checkLongnames(docSet, namespace) {
|
||||
const memberName = `${namespace || ''}Foo#member1`;
|
||||
@ -30,14 +31,14 @@ describe('function expressions', () => {
|
||||
}
|
||||
|
||||
describe('standard', () => {
|
||||
checkLongnames(jsdoc.getDocSetFromFile('test/fixtures/funcExpression.js'));
|
||||
checkLongnames(jsdoc.getDocSetFromFile('test/fixtures/funcexpression.js'));
|
||||
});
|
||||
|
||||
describe('global', () => {
|
||||
checkLongnames(jsdoc.getDocSetFromFile('test/fixtures/funcExpression2.js'));
|
||||
checkLongnames(jsdoc.getDocSetFromFile('test/fixtures/funcexpression2.js'));
|
||||
});
|
||||
|
||||
describe('as object literal property', () => {
|
||||
checkLongnames(jsdoc.getDocSetFromFile('test/fixtures/funcExpression3.js'), 'ns.');
|
||||
checkLongnames(jsdoc.getDocSetFromFile('test/fixtures/funcexpression3.js'), 'ns.');
|
||||
});
|
||||
});
|
||||
Loading…
x
Reference in New Issue
Block a user