fix(core): update

This commit is contained in:
2019-04-16 08:55:37 +02:00
parent c92ece79ff
commit 95d5c6ceee
8 changed files with 39 additions and 63 deletions

View File

@ -6,14 +6,14 @@ tap.test('should normalize a string', async () => {
const testString = `
myawesome string;
is indented with two spaces
`
`;
const normalizedString = smartstring.normalize.standard(testString);
expect(normalizedString).to.equal(
`
`
myawesome string;
is indented with two spaces
`
)
})
);
});
tap.start()
tap.start();