Skip to content

Commit

Permalink
docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
liyh committed Nov 27, 2016
1 parent 921a28f commit 7e3e6cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ expect('@charset "UTF-8";').to.have.atRule('charset', '"UTF8"')
expect('.foo { width: 10px; }').to.have.decl('width')
expect('.foo { width: 10px; }').to.not.have.decl('height')
expect('.foo { font-size: 16px; }').to.have.decl('font-size', '16px')
expect('.foo { width: 10px; width: 1rem; }').to.have.decl('width', '10px').and.decl('width', '10rem')
expect('.foo { width: 10px; width: 1rem; }').to.have.decl('width', '10px').and.decl('width', '1rem')
expect('.foo { width: 10px; font-size: 16px; }').to.have.decl({
width: '10px',
fontSize: '16px'
Expand Down

0 comments on commit 7e3e6cf

Please sign in to comment.