Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Commit

Permalink
test: fix warnings from postcss
Browse files Browse the repository at this point in the history
  • Loading branch information
mg901 committed Nov 12, 2019
1 parent ea7e10d commit 6c99a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { typographist } = require('.');

module.exports = (input, output, config) =>
postcss([typographist(config)])
.process(input)
.process(input, { from: undefined })
.then((result) => {
expect(result.css).toEqual(output);
expect(result.warnings().length).toBe(0);
Expand Down

0 comments on commit 6c99a39

Please sign in to comment.