We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c53f7f commit 0a7f94dCopy full SHA for 0a7f94d
test/index.js
@@ -3,7 +3,7 @@
3
const should = require('chai').should(); // eslint-disable-line
4
5
describe('Front-matter', () => {
6
- const yfm = require('..');
+ const yfm = require('../lib/front_matter.ts');
7
8
describe('split', () => {
9
it('not string', () => {
@@ -488,11 +488,11 @@ describe('Front-matter', () => {
488
489
yfm.stringify(data).should.eql([
490
'layout: post',
491
- `created: 1995-12-17 03:24:00`,
+ 'created: 1995-12-17 03:24:00',
492
'blank:',
493
'---',
494
'123'
495
].join('\n'));
496
- })
+ });
497
});
498
0 commit comments