Skip to content

Commit

Permalink
undo small nits
Browse files Browse the repository at this point in the history
  • Loading branch information
endiliey committed Jul 13, 2018
1 parent b15a39f commit 3ad88a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions lib/core/__tests__/__snapshots__/utils.test.js.snap
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`core utils extractBlogPostBeforeTruncate 1`] = `
exports[`utils extractBlogPostBeforeTruncate 1`] = `
"---
title: Truncation Example
---
Expand All @@ -12,7 +12,7 @@ Even this.
"
`;

exports[`core utils extractBlogPostBeforeTruncate 2`] = `
exports[`utils extractBlogPostBeforeTruncate 2`] = `
"---
title: Non-truncation Example
---
Expand All @@ -29,7 +29,7 @@ And this too.
"
`;

exports[`core utils extractBlogPostSummary 1`] = `
exports[`utils extractBlogPostSummary 1`] = `
"---
title: Truncation Example
---
Expand All @@ -48,7 +48,7 @@ Or this.
"
`;

exports[`core utils extractBlogPostSummary 2`] = `
exports[`utils extractBlogPostSummary 2`] = `
"---
title: Non-truncation Example
---
Expand Down
2 changes: 1 addition & 1 deletion lib/core/__tests__/utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const blogPostWithoutTruncateContents = fs.readFileSync(
'utf8'
);

describe('core utils', () => {
describe('utils', () => {
test('blogPostHasTruncateMarker', () => {
expect(utils.blogPostHasTruncateMarker(blogPostWithTruncateContents)).toBe(
true
Expand Down

0 comments on commit 3ad88a7

Please sign in to comment.