Skip to content

Commit

Permalink
chore: clean fixture for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed May 3, 2019
1 parent 659dffe commit dcf5c69
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.6",
"@types/semver": "^6.0.0",
"c8": "^4.1.3",
"c8": "^4.1.4",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"gts": "^0.9.0",
Expand Down
2 changes: 1 addition & 1 deletion test/updaters/changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('ChangelogUpdater', () => {
it('inserts content at appropriate location if CHANGELOG exists',
async () => {
const oldContent =
readFileSync(resolve(fixturesPath, './CHANGELOG.md'), 'utf8');
readFileSync(resolve(fixturesPath, './CHANGELOG.md'), 'utf8').replace(/\r\n/g, '\n');
const changelog = new Changelog({
path: 'CHANGELOG.md',
changelogEntry: '## 2.0.0\n\n* added a new foo to bar.',
Expand Down

0 comments on commit dcf5c69

Please sign in to comment.