https://github.com/folkengine/ducking-nemesis
How well can you duck from your nemesis?
https://github.com/folkengine/ducking-nemesis
Last synced: 8 months ago
JSON representation
How well can you duck from your nemesis?
- Host: GitHub
- URL: https://github.com/folkengine/ducking-nemesis
- Owner: folkengine
- License: unlicense
- Created: 2015-05-20T19:23:43.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-29T17:51:22.000Z (about 11 years ago)
- Last Synced: 2025-06-20T19:03:02.541Z (12 months ago)
- Language: JavaScript
- Size: 422 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ducking-nemesis
How well can you duck from your nemesis?
[ducking-nemesis.meteor.com](http://ducking-nemesis.meteor.com)
$> meteor deploy ducking-nemesis.meteor.com
Links
=====
Pages
* [Meteor Documentation](http://docs.meteor.com/#/full/)
* [Your First Meteor Application](http://meteortips.com/first-meteor-tutorial/)
* [The Meteor Testing Manual](http://www.meteortesting.com/)
* [Unit testing with Meteor](http://xolv.io/blog/2013/04/unit-testing-with-meteor)
* [Chai Assertion Library](http://chaijs.com/)
* [Building a customized accounts ui for Meteor](http://blog.benmcmahen.com/post/41741539120/building-a-customized-accounts-ui-for-meteor)
* [The right way to handle authentication and authorization in Cucumber for Meteor?](https://forums.meteor.com/t/the-right-way-to-handle-authentication-and-authorization-in-cucumber-for-meteor/2926)
* [THE BEST METEOR PACKAGES YOU MUST KNOW TO CODE FASTER THAN EVER](https://gentlenode.com/journal/meteor-22-the-best-meteor-packages-you-must-know-to-code-faster-than-ever/52)
* [DDP - Distributed Data Protocol](https://www.meteor.com/ddp)
* [Cucumber.io](https://cucumber.io/)
* [Webdriver.io](http://webdriver.io/)
* [PhantomJS](http://phantomjs.org/)
Code
* [Meteor](https://github.com/meteor/meteor)
* [Meteor-Cucumber](https://github.com/xolvio/meteor-cucumber)
* [Velocity](https://github.com/meteor-velocity/velocity)
Installing NPM with Homebrew
============================
We use some Node packages as a part of our Cucumber tests. In order to load these you will need to have NPM on your
system. If you are using Homebrew, do the following.
brew install node
## Example
this.client.getHTML("#login-dropdown-list", false, function(err, html) {
if (err) {
console.log("err> " + err);
}
}).should.exist.and.notify(callback)