- restructure transform.test.ts

- format test files
This commit is contained in:
Mike Penz
2021-08-27 11:59:12 +02:00
parent f4f12c3359
commit 59a6af0516
4 changed files with 240 additions and 187 deletions
+2 -2
View File
@@ -54,9 +54,9 @@ test('should write result to file', () => {
// should succeed
expect(result).toBeDefined()
const readOutput = fs.readFileSync("test.md")
const readOutput = fs.readFileSync('test.md')
fs.unlinkSync("test.md")
fs.unlinkSync('test.md')
expect(readOutput.toString()).not.toBe('')
})