Skip to content

Commit

Permalink
update readme and package
Browse files Browse the repository at this point in the history
  • Loading branch information
nathancahill committed Oct 31, 2015
1 parent a5dc877 commit 81123b9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## Eminent

DOM assertions with [Emmet syntax](http://docs.emmet.io/abbreviations/) for JavaScript testing.
[![Build Status](https://travis-ci.org/nathancahill/eminent.svg?branch=master)](https://travis-ci.org/nathancahill/eminent)

Eminent is a DOM assertions library with [Emmet syntax](http://docs.emmet.io/abbreviations/syntax/) for JavaScript testing.

```javascript
let html = `
Expand All @@ -17,3 +19,9 @@ let html = `

eminent.domIsLike(html, 'table>tbody>tr>td*3')
```

### Installation

```
$ npm install eminent
```
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "eminent",
"version": "0.0.1",
"description": "git remote add origin [email protected]:nathancahill/eminent.git",
"main": "index.js",
"description": "A DOM assertions library with Emmet syntax for JavaScript testing",
"main": "lib/eminent.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"build": "babel src/ -d lib/"
Expand Down

0 comments on commit 81123b9

Please sign in to comment.