Skip to content

Commit

Permalink
fix: ∆
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonLantz committed Jan 27, 2017
1 parent 1ae5ad4 commit 40d4621
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dev": "node ./npm_scripts/dev.js",
"start": "npm run dev",
"pretest": "node ./npm_scripts/pretest.js",
"test": "jest --coverage --watchAll",
"test": "jest --coverage",
"build": "node ./npm_scripts/build.js",
"lint": "node ./npm_scripts/lint.js",
"gen-changelog": "node ./npm_scripts/gen-changelog.js",
Expand Down
9 changes: 6 additions & 3 deletions test/__tests__/AlertList-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,15 @@ describe('AlertList', () => {
});

it('should render the AlertList', function() {
console.log(this.wrapper)
expect(this.wrapper.node.type).toEqual('Object');
expect(this.wrapper.node.type.displayName).toEqual('ReactCSSTransitionGroup');
});

it('should handle close', function() {
console.log(this.wrapper.renderer._instance._instance.handleClose)
// test close
})

it('should render alerts', function() {
// test alert render
})

});
Expand Down

0 comments on commit 40d4621

Please sign in to comment.