Skip to content

Commit

Permalink
Add new color palette (#2623)
Browse files Browse the repository at this point in the history
* Add new color palette

* Replace local require when scaffolding config

* Remove unused import
  • Loading branch information
adamwathan committed Oct 20, 2020
1 parent b6598e9 commit fd8bacd
Show file tree
Hide file tree
Showing 8 changed files with 107,878 additions and 202,748 deletions.
4 changes: 3 additions & 1 deletion __tests__/cli.test.js
Expand Up @@ -40,7 +40,9 @@ describe('cli', () => {
it('creates a full Tailwind config file', () => {
return runInTempDirectory(() => {
return cli(['init', '--full']).then(() => {
expect(utils.readFile(constants.defaultConfigFile)).toEqual(defaultConfigFixture)
expect(utils.readFile(constants.defaultConfigFile)).toEqual(
defaultConfigFixture.replace('../colors', 'tailwindcss/colors')
)
})
})
})
Expand Down

0 comments on commit fd8bacd

Please sign in to comment.