Preen mocha and chai. todo: fix concat
parent
508c59e05c
commit
756fdd2383
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "chai",
|
|
||||||
"version": "1.9.2",
|
|
||||||
"description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic.",
|
|
||||||
"license": "MIT",
|
|
||||||
"keywords": [
|
|
||||||
"test",
|
|
||||||
"assertion",
|
|
||||||
"assert",
|
|
||||||
"testing",
|
|
||||||
"chai"
|
|
||||||
],
|
|
||||||
"main": "chai.js",
|
|
||||||
"ignore": [
|
|
||||||
"build",
|
|
||||||
"components",
|
|
||||||
"lib",
|
|
||||||
"node_modules",
|
|
||||||
"support",
|
|
||||||
"test",
|
|
||||||
"index.js",
|
|
||||||
"Makefile",
|
|
||||||
".*"
|
|
||||||
],
|
|
||||||
"dependencies": {},
|
|
||||||
"devDependencies": {},
|
|
||||||
"homepage": "https://github.com/chaijs/chai",
|
|
||||||
"_release": "1.9.2",
|
|
||||||
"_resolution": {
|
|
||||||
"type": "version",
|
|
||||||
"tag": "1.9.2",
|
|
||||||
"commit": "73b4559e5ef336cf4292dfdb9ea4eb62b6bfadae"
|
|
||||||
},
|
|
||||||
"_source": "git://github.com/chaijs/chai.git",
|
|
||||||
"_target": "~1.9.2",
|
|
||||||
"_originalSource": "chai",
|
|
||||||
"_direct": true
|
|
||||||
}
|
|
@ -1,173 +0,0 @@
|
|||||||
# Chai Contribution Guidelines
|
|
||||||
|
|
||||||
We like to encourage you to contribute to the Chai.js repository. This should be as easy as possible for you but there are a few things to consider when contributing. The following guidelines for contribution should be followed if you want to submit a pull request or open an issue.
|
|
||||||
|
|
||||||
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue or assessing patches and features.
|
|
||||||
|
|
||||||
#### Table of Contents
|
|
||||||
|
|
||||||
- [TLDR;](#tldr)
|
|
||||||
- [Contributing](#contributing)
|
|
||||||
- [Bug Reports](#bugs)
|
|
||||||
- [Feature Requests](#features)
|
|
||||||
- [Pull Requests](#pull-requests)
|
|
||||||
- [Support](#support)
|
|
||||||
- [Resources](#resources)
|
|
||||||
- [Core Contributors](#contributors)
|
|
||||||
|
|
||||||
<a name="tldr"></a>
|
|
||||||
## TLDR;
|
|
||||||
|
|
||||||
- Creating an Issue or Pull Request requires a [GitHub](http://github.com) account.
|
|
||||||
- Issue reports should be **clear**, **concise** and **reproducible**. Check to see if your issue has already been resolved in the [master]() branch or already reported in Chai's [GitHub Issue Tracker](https://github.com/chaijs/chai/issues).
|
|
||||||
- Pull Requests must adhere to strict [coding style guidelines](https://github.com/chaijs/chai/wiki/Chai-Coding-Style-Guide).
|
|
||||||
- In general, avoid submitting PRs for new Assertions without asking core contributors first. More than likely it would be better implemented as a plugin.
|
|
||||||
- Additional support is available via the [Google Group](http://groups.google.com/group/chaijs) or on irc.freenode.net#chaijs.
|
|
||||||
- **IMPORTANT**: By submitting a patch, you agree to allow the project owner to license your work under the same license as that used by the project.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a name="contributing"></a>
|
|
||||||
## Contributing
|
|
||||||
|
|
||||||
The issue tracker is the preferred channel for [bug reports](#bugs),
|
|
||||||
[feature requests](#features) and [submitting pull
|
|
||||||
requests](#pull-requests), but please respect the following restrictions:
|
|
||||||
|
|
||||||
* Please **do not** use the issue tracker for personal support requests (use
|
|
||||||
[Google Group](https://groups.google.com/forum/#!forum/chaijs) or IRC).
|
|
||||||
* Please **do not** derail or troll issues. Keep the discussion on topic and
|
|
||||||
respect the opinions of others
|
|
||||||
|
|
||||||
<a name="bugs"></a>
|
|
||||||
### Bug Reports
|
|
||||||
|
|
||||||
A bug is a **demonstrable problem** that is caused by the code in the repository.
|
|
||||||
|
|
||||||
Guidelines for bug reports:
|
|
||||||
|
|
||||||
1. **Use the GitHub issue search** — check if the issue has already been reported.
|
|
||||||
2. **Check if the issue has been fixed** — try to reproduce it using the latest `master` or development branch in the repository.
|
|
||||||
3. **Isolate the problem** — create a test case to demonstrate your issue. Provide either a repo, gist, or code sample to demonstrate you problem.
|
|
||||||
|
|
||||||
A good bug report shouldn't leave others needing to chase you up for more information. Please try to be as detailed as possible in your report. What is your environment? What steps will reproduce the issue? What browser(s) and/or Node.js versions experience the problem? What would you expect to be the outcome? All these details will help people to fix any potential bugs.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
> Short and descriptive example bug report title
|
|
||||||
>
|
|
||||||
> A summary of the issue and the browser/OS environment in which it occurs. If suitable, include the steps required to reproduce the bug.
|
|
||||||
>
|
|
||||||
> 1. This is the first step
|
|
||||||
> 2. This is the second step
|
|
||||||
> 3. Further steps, etc.
|
|
||||||
>
|
|
||||||
> `<url>` - a link to the reduced test case OR
|
|
||||||
> ```js
|
|
||||||
> expect(a).to.equal('a');
|
|
||||||
> // code sample
|
|
||||||
> ```
|
|
||||||
>
|
|
||||||
> Any other information you want to share that is relevant to the issue being reported. This might include the lines of code that you have identified as causing the bug, and potential solutions (and your opinions on their merits).
|
|
||||||
|
|
||||||
<a name="features"></a>
|
|
||||||
### Feature Requests
|
|
||||||
|
|
||||||
Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to *you* to make a strong case to convince the project's developers of the merits of this feature. Please provide as much detail and context as possible.
|
|
||||||
|
|
||||||
Furthermore, since Chai.js has a [robust plugin API](http://chaijs.com/guide/plugins/), we encourage you to publish **new Assertions** as plugins. If your feature is an enhancement to an **existing Assertion**, please propose your changes as an issue prior to opening a pull request. If the core Chai.js contributors feel your plugin would be better suited as a core assertion, they will invite you to open a PR in [chaijs/chai](https://github.com/chaijs/chai).
|
|
||||||
|
|
||||||
<a name="pull-requests"></a>
|
|
||||||
### Pull Requests
|
|
||||||
|
|
||||||
- PRs for new core-assertions are advised against.
|
|
||||||
- PRs for core-assertion bug fixes are always welcome.
|
|
||||||
- PRs for enhancing the interfaces are always welcome.
|
|
||||||
- PRs that increase test coverage are always welcome.
|
|
||||||
- PRs are scrutinized for coding-style.
|
|
||||||
|
|
||||||
Good pull requests - patches, improvements, new features - are a fantastic help. They should remain focused in scope and avoid containing unrelated commits.
|
|
||||||
|
|
||||||
**Please ask first** before embarking on any significant pull request (e.g. implementing features, refactoring code), otherwise you risk spending a lot of time working on something that the project's developers might not want to merge into the project.
|
|
||||||
|
|
||||||
Please adhere to the coding conventions used throughout a project (indentation, accurate comments, etc.) and any other requirements (such as test coverage). Please review the [Chai.js Coding Style Guide](https://github.com/chaijs/chai/wiki/Chai-Coding-Style-Guide).
|
|
||||||
|
|
||||||
Follow this process if you'd like your work considered for inclusion in the project:
|
|
||||||
|
|
||||||
1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork, and configure the remotes:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Clone your fork of the repo into the current directory
|
|
||||||
git clone https://github.com/<your-username>/<repo-name>
|
|
||||||
# Navigate to the newly cloned directory
|
|
||||||
cd <repo-name>
|
|
||||||
# Assign the original repo to a remote called "upstream"
|
|
||||||
git remote add upstream https://github.com/<upstream-owner>/<repo-name>
|
|
||||||
```
|
|
||||||
|
|
||||||
2. If you cloned a while ago, get the latest changes from upstream:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
git checkout <dev-branch>
|
|
||||||
git pull upstream <dev-branch>
|
|
||||||
```
|
|
||||||
|
|
||||||
3. Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
git checkout -b <topic-branch-name>
|
|
||||||
```
|
|
||||||
|
|
||||||
4. Commit your changes in logical chunks. Use Git's [interactive rebase](https://help.github.com/articles/interactive-rebase) feature to tidy up your commits before making them public.
|
|
||||||
|
|
||||||
5. Locally merge (or rebase) the upstream development branch into your topic branch:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
git pull [--rebase] upstream <dev-branch>
|
|
||||||
```
|
|
||||||
|
|
||||||
6. Push your topic branch up to your fork:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
git push origin <topic-branch-name>
|
|
||||||
```
|
|
||||||
|
|
||||||
7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) with a clear title and description.
|
|
||||||
|
|
||||||
**IMPORTANT**: By submitting a patch, you agree to allow the project owner to license your work under the same license as that used by the project.
|
|
||||||
|
|
||||||
<a name="support"></a>
|
|
||||||
## Support
|
|
||||||
|
|
||||||
<a name="resources"></a>
|
|
||||||
### Resources
|
|
||||||
|
|
||||||
For most of the documentation you are going to want to visit [ChaiJS.com](http://chaijs.com).
|
|
||||||
|
|
||||||
- [Getting Started Guide](http://chaijs.com/guide/)
|
|
||||||
- [API Reference](http://chaijs.com/api/)
|
|
||||||
- [Plugins](http://chaijs.com/plugins/)
|
|
||||||
|
|
||||||
Alternatively, the [wiki](https://github.com/chaijs/chai/wiki) might be what you are looking for.
|
|
||||||
|
|
||||||
- [Chai Coding Style Guide](https://github.com/chaijs/chai/wiki/Chai-Coding-Style-Guide)
|
|
||||||
- [Third-party Resources](https://github.com/chaijs/chai/wiki/Third-Party-Resources)
|
|
||||||
|
|
||||||
Or finally, you may find a core-contributor or like-minded developer in any of our support channels.
|
|
||||||
|
|
||||||
- IRC: irc.freenode.org #chaijs
|
|
||||||
- [Mailing List / Google Group](https://groups.google.com/forum/#!forum/chaijs)
|
|
||||||
|
|
||||||
<a name="contributors"></a>
|
|
||||||
### Core Contributors
|
|
||||||
|
|
||||||
Feel free to reach out to any of the core-contributors with you questions or concerns. We will do our best to respond in a timely manner.
|
|
||||||
|
|
||||||
- Jake Luer
|
|
||||||
- GH: [@logicalparadox](https://github.com/logicalparadox)
|
|
||||||
- TW: [@jakeluer](http://twitter.com/jakeluer)
|
|
||||||
- IRC: logicalparadox
|
|
||||||
- Veselin Todorov
|
|
||||||
- GH: [@vesln](https://github.com/vesln/)
|
|
||||||
- TW: [@vesln](http://twitter.com/vesln)
|
|
||||||
- IRC: vesln
|
|
@ -1,99 +0,0 @@
|
|||||||
[](http://chaijs.com)
|
|
||||||
|
|
||||||
Chai is a BDD / TDD assertion library for [node](http://nodejs.org) and the browser that
|
|
||||||
can be delightfully paired with any javascript testing framework.
|
|
||||||
|
|
||||||
For more information or to download plugins, view the [documentation](http://chaijs.com).
|
|
||||||
|
|
||||||
[](https://travis-ci.org/chaijs/chai)
|
|
||||||
|
|
||||||
[](https://saucelabs.com/u/chaijs)
|
|
||||||
|
|
||||||
### Plugins
|
|
||||||
|
|
||||||
Chai offers a robust Plugin architecture for extending Chai's assertions and interfaces.
|
|
||||||
|
|
||||||
- Need a plugin? View the [official plugin list](http://chaijs.com/plugins).
|
|
||||||
- Have a plugin and want it listed? Open a Pull Request at [chaijs/chai-docs:plugin.js](https://github.com/chaijs/chai-docs/blob/master/plugins.js#L1-L12).
|
|
||||||
- Want to build a plugin? Read the [plugin api documentation](http://chaijs.com/guide/plugins/).
|
|
||||||
|
|
||||||
### Related Projects
|
|
||||||
|
|
||||||
- [chaijs / assertion-error](https://github.com/chaijs/assertion-error): Custom `Error` constructor thrown upon an assertion failing.
|
|
||||||
- [chaijs / deep-eql](https://github.com/chaijs/deep-eql): Improved deep equality testing for Node.js and the browser.
|
|
||||||
|
|
||||||
### Contributors
|
|
||||||
|
|
||||||
project : chai
|
|
||||||
repo age : 2 years, 3 months ago
|
|
||||||
commits : 756
|
|
||||||
active : 170 days
|
|
||||||
files : 57
|
|
||||||
authors :
|
|
||||||
540 Jake Luer 71.4%
|
|
||||||
79 Veselin Todorov 10.4%
|
|
||||||
43 Domenic Denicola 5.7%
|
|
||||||
6 Ruben Verborgh 0.8%
|
|
||||||
5 George Kats 0.7%
|
|
||||||
5 Jo Liss 0.7%
|
|
||||||
5 Juliusz Gonera 0.7%
|
|
||||||
5 Scott Nonnenberg 0.7%
|
|
||||||
5 leider 0.7%
|
|
||||||
4 John Firebaugh 0.5%
|
|
||||||
4 Max Edmands 0.5%
|
|
||||||
4 Nick Heiner 0.5%
|
|
||||||
4 josher19 0.5%
|
|
||||||
3 Andrei Neculau 0.4%
|
|
||||||
3 Duncan Beevers 0.4%
|
|
||||||
3 Jake Rosoman 0.4%
|
|
||||||
3 Jeff Barczewski 0.4%
|
|
||||||
3 Ryunosuke SATO 0.4%
|
|
||||||
3 Veselin 0.4%
|
|
||||||
2 Bartvds 0.3%
|
|
||||||
2 Edwin Shao 0.3%
|
|
||||||
2 Jakub Nešetřil 0.3%
|
|
||||||
2 Roman Masek 0.3%
|
|
||||||
2 Teddy Cross 0.3%
|
|
||||||
1 Anand Patil 0.1%
|
|
||||||
1 Benjamin Horsleben 0.1%
|
|
||||||
1 Brandon Payton 0.1%
|
|
||||||
1 Chris Connelly 0.1%
|
|
||||||
1 Chun-Yi 0.1%
|
|
||||||
1 DD 0.1%
|
|
||||||
1 Dido Arellano 0.1%
|
|
||||||
1 Jeff Welch 0.1%
|
|
||||||
1 Kilian Ciuffolo 0.1%
|
|
||||||
1 Luís Cardoso 0.1%
|
|
||||||
1 Niklas Närhinen 0.1%
|
|
||||||
1 Paul Miller 0.1%
|
|
||||||
1 Refael Ackermann 0.1%
|
|
||||||
1 Sasha Koss 0.1%
|
|
||||||
1 Victor Costan 0.1%
|
|
||||||
1 Vinay Pulim 0.1%
|
|
||||||
1 Virginie BARDALES 0.1%
|
|
||||||
1 laconbass 0.1%
|
|
||||||
1 piecioshka 0.1%
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
(The MIT License)
|
|
||||||
|
|
||||||
Copyright (c) 2011-2014 Jake Luer <jake@alogicalparadox.com>
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
@ -1,507 +0,0 @@
|
|||||||
# Release Notes
|
|
||||||
|
|
||||||
## 1.9.2 / 2014-09-29
|
|
||||||
|
|
||||||
The following changes are required if you are upgrading from the previous version:
|
|
||||||
|
|
||||||
- **Users:**
|
|
||||||
- No changes required
|
|
||||||
- **Plugin Developers:**
|
|
||||||
- No changes required
|
|
||||||
- **Core Contributors:**
|
|
||||||
- Refresh `node_modules` folder for updated dependencies.
|
|
||||||
|
|
||||||
### Community Contributions
|
|
||||||
|
|
||||||
- [#264](https://github.com/chaijs/chai/pull/264) Show diff for keys assertions [@cjthompson](https://github.com/cjthompson)
|
|
||||||
- [#267](https://github.com/chaijs/chai/pull/267) Use SVG badges [@shinnn](https://github.com/shinnn)
|
|
||||||
- [#268](https://github.com/chaijs/chai/pull/268) Allow messages to be functions (sinon-compat) [@charlierudolph](https://github.com/charlierudolph)
|
|
||||||
- [#269](https://github.com/chaijs/chai/pull/269) Remove unused argument for #lengthOf [@charlierudolph](https://github.com/charlierudolph)
|
|
||||||
- [#275](https://github.com/chaijs/chai/pull/275) Rewrite pretty-printing HTML elements to prevent throwing internal errors [@DrRataplan](https://github.com/DrRataplan)
|
|
||||||
- [#277](https://github.com/chaijs/chai/pull/277) Fix assert documentation for #sameMembers [@charlierudolph](https://github.com/charlierudolph)
|
|
||||||
- [#279](https://github.com/chaijs/chai/pull/279) closeTo should check value's type before assertion [@mohayonao](https://github.com/mohayonao)
|
|
||||||
- [#289](https://github.com/chaijs/chai/pull/289) satisfy is called twice [@charlierudolph](https://github.com/charlierudolph)
|
|
||||||
- [#292](https://github.com/chaijs/chai/pull/292) resolve conflicts with node-webkit and global usage [@boneskull](https://github.com/boneskull)
|
|
||||||
|
|
||||||
Thank you to all who took time to contribute!
|
|
||||||
|
|
||||||
## 1.9.1 / 2014-03-19
|
|
||||||
|
|
||||||
The following changes are required if you are upgrading from the previous version:
|
|
||||||
|
|
||||||
- **Users:**
|
|
||||||
- Migrate configuration options to new interface. (see notes)
|
|
||||||
- **Plugin Developers:**
|
|
||||||
- No changes required
|
|
||||||
- **Core Contributors:**
|
|
||||||
- Refresh `node_modules` folder for updated dependencies.
|
|
||||||
|
|
||||||
### Configuration
|
|
||||||
|
|
||||||
There have been requests for changes and additions to the configuration mechanisms
|
|
||||||
and their impact in the Chai architecture. As such, we have decoupled the
|
|
||||||
configuration from the `Assertion` constructor. This not only allows for centralized
|
|
||||||
configuration, but will allow us to shift the responsibility from the `Assertion`
|
|
||||||
constructor to the `assert` interface in future releases.
|
|
||||||
|
|
||||||
These changes have been implemented in a non-breaking way, but a depretiation
|
|
||||||
warning will be presented to users until they migrate. The old config method will
|
|
||||||
be removed in either `v1.11.0` or `v2.0.0`, whichever comes first.
|
|
||||||
|
|
||||||
#### Quick Migration
|
|
||||||
|
|
||||||
```js
|
|
||||||
// change this:
|
|
||||||
chai.Assertion.includeStack = true;
|
|
||||||
chai.Assertion.showDiff = false;
|
|
||||||
|
|
||||||
// ... to this:
|
|
||||||
chai.config.includeStack = true;
|
|
||||||
chai.config.showDiff = false;
|
|
||||||
```
|
|
||||||
|
|
||||||
#### All Config Options
|
|
||||||
|
|
||||||
##### config.includeStack
|
|
||||||
|
|
||||||
- **@param** _{Boolean}_
|
|
||||||
- **@default** `false`
|
|
||||||
|
|
||||||
User configurable property, influences whether stack trace is included in
|
|
||||||
Assertion error message. Default of `false` suppresses stack trace in the error
|
|
||||||
message.
|
|
||||||
|
|
||||||
##### config.showDiff
|
|
||||||
|
|
||||||
- **@param** _{Boolean}_
|
|
||||||
- **@default** `true`
|
|
||||||
|
|
||||||
User configurable property, influences whether or not the `showDiff` flag
|
|
||||||
should be included in the thrown AssertionErrors. `false` will always be `false`;
|
|
||||||
`true` will be true when the assertion has requested a diff be shown.
|
|
||||||
|
|
||||||
##### config.truncateThreshold **(NEW)**
|
|
||||||
|
|
||||||
- **@param** _{Number}_
|
|
||||||
- **@default** `40`
|
|
||||||
|
|
||||||
User configurable property, sets length threshold for actual and expected values
|
|
||||||
in assertion errors. If this threshold is exceeded, the value is truncated.
|
|
||||||
|
|
||||||
Set it to zero if you want to disable truncating altogether.
|
|
||||||
|
|
||||||
```js
|
|
||||||
chai.config.truncateThreshold = 0; // disable truncating
|
|
||||||
```
|
|
||||||
|
|
||||||
### Community Contributions
|
|
||||||
|
|
||||||
- [#228](https://github.com/chaijs/chai/pull/228) Deep equality check for memebers. [@duncanbeevers](https://github.com/duncanbeevers)
|
|
||||||
- [#247](https://github.com/chaijs/chai/pull/247) Proofreading. [@didorellano](https://github.com/didoarellano)
|
|
||||||
- [#244](https://github.com/chaijs/chai/pull/244) Fix `contain`/`include` 1.9.0 regression. [@leider](https://github.com/leider)
|
|
||||||
- [#233](https://github.com/chaijs/chai/pull/233) Improvements to `ssfi` for `assert` interface. [@refack](https://github.com/refack)
|
|
||||||
- [#251](https://github.com/chaijs/chai/pull/251) New config option: object display threshold. [@romario333](https://github.com/romario333)
|
|
||||||
|
|
||||||
Thank you to all who took time to contribute!
|
|
||||||
|
|
||||||
### Other Bug Fixes
|
|
||||||
|
|
||||||
- [#183](https://github.com/chaijs/chai/issues/183) Allow `undefined` for actual. (internal api)
|
|
||||||
- Update Karam(+plugins)/Istanbul to most recent versions.
|
|
||||||
|
|
||||||
## 1.9.0 / 2014-01-29
|
|
||||||
|
|
||||||
The following changes are required if you are upgrading from the previous version:
|
|
||||||
|
|
||||||
- **Users:**
|
|
||||||
- No changes required
|
|
||||||
- **Plugin Developers:**
|
|
||||||
- Review [#219](https://github.com/chaijs/chai/pull/219).
|
|
||||||
- **Core Contributors:**
|
|
||||||
- Refresh `node_modules` folder for updated dependencies.
|
|
||||||
|
|
||||||
### Community Contributions
|
|
||||||
|
|
||||||
- [#202](https://github.com/chaijs/chai/pull/201) Improve error message for .throw(). [@andreineculau](https://github.com/andreineculau)
|
|
||||||
- [#217](https://github.com/chaijs/chai/pull/217) Chai tests can be run with `--watch`. [@demands](https://github.com/demands)
|
|
||||||
- [#219](https://github.com/chaijs/chai/pull/219) Add overwriteChainableMethod utility. [@demands](https://github.com/demands)
|
|
||||||
- [#224](https://github.com/chaijs/chai/pull/224) Return error on throw method to chain on error properties. [@vbardales](https://github.com/vbardales)
|
|
||||||
- [#226](https://github.com/chaijs/chai/pull/226) Add `has` to language chains. [@duncanbeevers](https://github.com/duncanbeevers)
|
|
||||||
- [#230](https://github.com/chaijs/chai/pull/230) Support `{a:1,b:2}.should.include({a:1})` [@jkroso](https://github.com/jkroso)
|
|
||||||
- [#231](https://github.com/chaijs/chai/pull/231) Update Copyright notices to 2014 [@duncanbeevers](https://github.com/duncanbeevers)
|
|
||||||
- [#232](https://github.com/chaijs/chai/pull/232) Avoid error instantiation if possible on assert.throws. [@laconbass](https://github.com/laconbass)
|
|
||||||
|
|
||||||
Thank you to all who took time to contribute!
|
|
||||||
|
|
||||||
### Other Bug Fixes
|
|
||||||
|
|
||||||
- [#225](https://github.com/chaijs/chai/pull/225) Improved AMD wrapper provided by upstream `component(1)`.
|
|
||||||
- [#185](https://github.com/chaijs/chai/issues/185) `assert.throws()` returns thrown error for further assertions.
|
|
||||||
- [#237](https://github.com/chaijs/chai/pull/237) Remove coveralls/jscoverage, include istanbul coverage report in travis test.
|
|
||||||
- Update Karma and Sauce runner versions for consistent CI results. No more karma@canary.
|
|
||||||
|
|
||||||
## 1.8.1 / 2013-10-10
|
|
||||||
|
|
||||||
The following changes are required if you are upgrading from the previous version:
|
|
||||||
|
|
||||||
- **Users:**
|
|
||||||
- Refresh `node_modules` folder for updated dependencies.
|
|
||||||
- **Plugin Developers:**
|
|
||||||
- No changes required
|
|
||||||
- **Core Contributors:**
|
|
||||||
- Refresh `node_modules` folder for updated dependencies.
|
|
||||||
|
|
||||||
### Browserify
|
|
||||||
|
|
||||||
This is a small patch that updates the dependency tree so browserify users can install
|
|
||||||
chai. (Remove conditional requires)
|
|
||||||
|
|
||||||
## 1.8.0 / 2013-09-18
|
|
||||||
|
|
||||||
The following changes are required if you are upgrading from the previous version:
|
|
||||||
|
|
||||||
- **Users:**
|
|
||||||
- See `deep.equal` notes.
|
|
||||||
- **Plugin Developers:**
|
|
||||||
- No changes required
|
|
||||||
- **Core Contributors:**
|
|
||||||
- Refresh `node_modules` folder for updated dependencies.
|
|
||||||
|
|
||||||
### Deep Equals
|
|
||||||
|
|
||||||
This version of Chai focused on a overhaul to the deep equal utility. The code for this
|
|
||||||
tool has been removed from the core lib and can now be found at:
|
|
||||||
[chai / deep-eql](https://github.com/chaijs/deep-eql). As stated in previous releases,
|
|
||||||
this is part of a larger initiative to provide transparency, independent testing, and coverage for
|
|
||||||
some of the more complicated internal tools.
|
|
||||||
|
|
||||||
For the most part `.deep.equal` will behave the same as it has. However, in order to provide a
|
|
||||||
consistent ruleset across all types being tested, the following changes have been made and _might_
|
|
||||||
require changes to your tests.
|
|
||||||
|
|
||||||
**1.** Strict equality for non-traversable nodes according to [egal](http://wiki.ecmascript.org/doku.php?id=harmony:egal).
|
|
||||||
|
|
||||||
_Previously:_ Non-traversable equal via `===`.
|
|
||||||
|
|
||||||
```js
|
|
||||||
expect(NaN).to.deep.equal(NaN);
|
|
||||||
expect(-0).to.not.deep.equal(+0);
|
|
||||||
```
|
|
||||||
|
|
||||||
**2.** Arguments are not Arrays (and all types must be equal):
|
|
||||||
|
|
||||||
_Previously:_ Some crazy nonsense that led to empty arrays deep equaling empty objects deep equaling dates.
|
|
||||||
|
|
||||||
```js
|
|
||||||
expect(arguments).to.not.deep.equal([]);
|
|
||||||
expect(Array.prototype.slice.call(arguments)).to.deep.equal([]);
|
|
||||||
```
|
|
||||||
|
|
||||||
- [#156](https://github.com/chaijs/chai/issues/156) Empty object is eql to empty array
|
|
||||||
- [#192](https://github.com/chaijs/chai/issues/192) empty object is eql to a Date object
|
|
||||||
- [#194](https://github.com/chaijs/chai/issues/194) refactor deep-equal utility
|
|
||||||
|
|
||||||
### CI and Browser Testing
|
|
||||||
|
|
||||||
Chai now runs the browser CI suite using [Karma](http://karma-runner.github.io/) directed at
|
|
||||||
[SauceLabs](https://saucelabs.com/). This means we get to know where our browser support stands...
|
|
||||||
and we get a cool badge:
|
|
||||||
|
|
||||||
[](https://saucelabs.com/u/logicalparadox)
|
|
||||||
|
|
||||||
Look for the list of browsers/versions to expand over the coming releases.
|
|
||||||
|
|
||||||
- [#195](https://github.com/chaijs/chai/issues/195) karma test framework
|
|
||||||
|
|
||||||
## 1.7.2 / 2013-06-27
|
|
||||||
|
|
||||||
The following changes are required if you are upgrading from the previous version:
|
|
||||||
|
|
||||||
- **Users:**
|
|
||||||
- No changes required.
|
|
||||||
- **Plugin Developers:**
|
|
||||||
- No changes required
|
|
||||||
- **Core Contributors:**
|
|
||||||
- Refresh `node_modules` folder for updated dependencies.
|
|
||||||
|
|
||||||
### Coverage Reporting
|
|
||||||
|
|
||||||
Coverage reporting has always been available for core-developers but the data has never been published
|
|
||||||
for our end users. In our ongoing effort to improve accountability this data will now be published via
|
|
||||||
the [coveralls.io](https://coveralls.io/) service. A badge has been added to the README and the full report
|
|
||||||
can be viewed online at the [chai coveralls project](https://coveralls.io/r/chaijs/chai). Furthermore, PRs
|
|
||||||
will receive automated messages indicating how their PR impacts test coverage. This service is tied to TravisCI.
|
|
||||||
|
|
||||||
### Other Fixes
|
|
||||||
|
|
||||||
- [#175](https://github.com/chaijs/chai/issues/175) Add `bower.json`. (Fix ignore all)
|
|
||||||
|
|
||||||
## 1.7.1 / 2013-06-24
|
|
||||||
|
|
||||||
The following changes are required if you are upgrading from the previous version:
|
|
||||||
|
|
||||||
- **Users:**
|
|
||||||
- No changes required.
|
|
||||||
- **Plugin Developers:**
|
|
||||||
- No changes required
|
|
||||||
- **Core Contributors:**
|
|
||||||
- Refresh `node_modules` folder for updated dependencies.
|
|
||||||
|
|
||||||
### Official Bower Support
|
|
||||||
|
|
||||||
Support has been added for the Bower Package Manager ([bower.io])(http://bower.io/). Though
|
|
||||||
Chai could be installed via Bower in the past, this update adds official support via the `bower.json`
|
|
||||||
specification file.
|
|
||||||
|
|
||||||
- [#175](https://github.com/chaijs/chai/issues/175) Add `bower.json`.
|
|
||||||
|
|
||||||
## 1.7.0 / 2013-06-17
|
|
||||||
|
|
||||||
The following changes are required if you are upgrading from the previous version:
|
|
||||||
|
|
||||||
- **Users:**
|
|
||||||
- No changes required.
|
|
||||||
- **Plugin Developers:**
|
|
||||||
- Review AssertionError update notice.
|
|
||||||
- **Core Contributors:**
|
|
||||||
- Refresh `node_modules` folder for updated dependencies.
|
|
||||||
|
|
||||||
### AssertionError Update Notice
|
|
||||||
|
|
||||||
Chai now uses [chaijs/assertion-error](https://github.com/chaijs/assertion-error) instead an internal
|
|
||||||
constructor. This will allow for further iteration/experimentation of the AssertionError constructor
|
|
||||||
independant of Chai. Future plans include stack parsing for callsite support.
|
|
||||||
|
|
||||||
This update constructor has a different constructor param signature that conforms more with the standard
|
|
||||||
`Error` object. If your plugin throws and `AssertionError` directly you will need to update your plugin
|
|
||||||
with the new signature.
|
|
||||||
|
|
||||||
```js
|
|
||||||
var AssertionError = require('chai').AssertionError;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* previous
|
|
||||||
*
|
|
||||||
* @param {Object} options
|
|
||||||
*/
|
|
||||||
|
|
||||||
throw new AssertionError({
|
|
||||||
message: 'An assertion error occurred'
|
|
||||||
, actual: actual
|
|
||||||
, expect: expect
|
|
||||||
, startStackFunction: arguments.callee
|
|
||||||
, showStack: true
|
|
||||||
});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* new
|
|
||||||
*
|
|
||||||
* @param {String} message
|
|
||||||
* @param {Object} options
|
|
||||||
* @param {Function} start stack function
|
|
||||||
*/
|
|
||||||
|
|
||||||
throw new AssertionError('An assertion error occurred', {
|
|
||||||
actual: actual
|
|
||||||
, expect: expect
|
|
||||||
, showStack: true
|
|
||||||
}, arguments.callee);
|
|
||||||
|
|
||||||
// other signatures
|
|
||||||
throw new AssertionError('An assertion error occurred');
|
|
||||||
throw new AssertionError('An assertion error occurred', null, arguments.callee);
|
|
||||||
```
|
|
||||||
|
|
||||||
#### External Dependencies
|
|
||||||
|
|
||||||
This is the first non-developement dependency for Chai. As Chai continues to evolve we will begin adding
|
|
||||||
more; the next will likely be improved type detection and deep equality. With Chai's userbase continually growing
|
|
||||||
there is an higher need for accountability and documentation. External dependencies will allow us to iterate and
|
|
||||||
test on features independent from our interfaces.
|
|
||||||
|
|
||||||
Note: The browser packaged version `chai.js` will ALWAYS contain all dependencies needed to run Chai.
|
|
||||||
|
|
||||||
### Community Contributions
|
|
||||||
|
|
||||||
- [#169](https://github.com/chaijs/chai/pull/169) Fix deep equal comparison for Date/Regexp types. [@katsgeorgeek](https://github.com/katsgeorgeek)
|
|
||||||
- [#171](https://github.com/chaijs/chai/pull/171) Add `assert.notOk()`. [@Bartvds](https://github.com/Bartvds)
|
|
||||||
- [#173](https://github.com/chaijs/chai/pull/173) Fix `inspect` utility. [@domenic](https://github.com/domenic)
|
|
||||||
|
|
||||||
Thank you to all who took the time to contribute!
|
|
||||||
|
|
||||||
## 1.6.1 / 2013-06-05
|
|
||||||
|
|
||||||
The following changes are required if you are upgrading from the previous version:
|
|
||||||
|
|
||||||
- **Users:**
|
|
||||||
- No changes required.
|
|
||||||
- **Plugin Developers:**
|
|
||||||
- No changes required.
|
|
||||||
- **Core Contributors:**
|
|
||||||
- Refresh `node_modules` folder for updated developement dependencies.
|
|
||||||
|
|
||||||
### Deep Equality
|
|
||||||
|
|
||||||
Regular Expressions are now tested as part of all deep equality assertions. In previous versions
|
|
||||||
they silently passed for all scenarios. Thanks to [@katsgeorgeek](https://github.com/katsgeorgeek) for the contribution.
|
|
||||||
|
|
||||||
### Community Contributions
|
|
||||||
|
|
||||||
- [#161](https://github.com/chaijs/chai/pull/161) Fix documented name for assert interface's isDefined method. [@brandonpayton](https://github.com/brandonpayton)
|
|
||||||
- [#168](https://github.com/chaijs/chai/pull/168) Fix comparison equality of two regexps for when using deep equality. [@katsgeorgeek](https://github.com/katsgeorgeek)
|
|
||||||
|
|
||||||
Thank you to all who took the time to contribute!
|
|
||||||
|
|
||||||
### Additional Notes
|
|
||||||
|
|
||||||
- Mocha has been locked at version `1.8.x` to ensure `mocha-phantomjs` compatibility.
|
|
||||||
|
|
||||||
## 1.6.0 / 2013-04-29
|
|
||||||
|
|
||||||
The following changes are required if you are upgrading from the previous version:
|
|
||||||
|
|
||||||
- **Users:**
|
|
||||||
- No changes required.
|
|
||||||
- **Plugin Developers:**
|
|
||||||
- No changes required.
|
|
||||||
- **Core Contributors:**
|
|
||||||
- Refresh `node_modules` folder for updated developement dependencies.
|
|
||||||
|
|
||||||
### New Assertions
|
|
||||||
|
|
||||||
#### Array Members Inclusion
|
|
||||||
|
|
||||||
Asserts that the target is a superset of `set`, or that the target and `set` have the same members.
|
|
||||||
Order is not taken into account. Thanks to [@NickHeiner](https://github.com/NickHeiner) for the contribution.
|
|
||||||
|
|
||||||
```js
|
|
||||||
// (expect/should) full set
|
|
||||||
expect([4, 2]).to.have.members([2, 4]);
|
|
||||||
expect([5, 2]).to.not.have.members([5, 2, 1]);
|
|
||||||
|
|
||||||
// (expect/should) inclusion
|
|
||||||
expect([1, 2, 3]).to.include.members([3, 2]);
|
|
||||||
expect([1, 2, 3]).to.not.include.members([3, 2, 8]);
|
|
||||||
|
|
||||||
// (assert) full set
|
|
||||||
assert.sameMembers([ 1, 2, 3 ], [ 2, 1, 3 ], 'same members');
|
|
||||||
|
|
||||||
// (assert) inclusion
|
|
||||||
assert.includeMembers([ 1, 2, 3 ], [ 2, 1 ], 'include members');
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Non-inclusion for Assert Interface
|
|
||||||
|
|
||||||
Most `assert` functions have a negative version, like `instanceOf()` has a corresponding `notInstaceOf()`.
|
|
||||||
However `include()` did not have a corresponding `notInclude()`. This has been added.
|
|
||||||
|
|
||||||
```js
|
|
||||||
assert.notInclude([ 1, 2, 3 ], 8);
|
|
||||||
assert.notInclude('foobar', 'baz');
|
|
||||||
```
|
|
||||||
|
|
||||||
### Community Contributions
|
|
||||||
|
|
||||||
- [#140](https://github.com/chaijs/chai/pull/140) Restore `call`/`apply` methods for plugin interface. [@RubenVerborgh](https://github.com/RubenVerborgh)
|
|
||||||
- [#148](https://github.com/chaijs/chai/issues/148)/[#153](https://github.com/chaijs/chai/pull/153) Add `members` and `include.members` assertions. [#NickHeiner](https://github.com/NickHeiner)
|
|
||||||
|
|
||||||
Thank you to all who took time to contribute!
|
|
||||||
|
|
||||||
### Other Bug Fixes
|
|
||||||
|
|
||||||
- [#142](https://github.com/chaijs/chai/issues/142) `assert#include` will no longer silently pass on wrong-type haystack.
|
|
||||||
- [#158](https://github.com/chaijs/chai/issues/158) `assert#notInclude` has been added.
|
|
||||||
- Travis-CI now tests Node.js `v0.10.x`. Support for `v0.6.x` has been removed. `v0.8.x` is still tested as before.
|
|
||||||
|
|
||||||
## 1.5.0 / 2013-02-03
|
|
||||||
|
|
||||||
### Migration Requirements
|
|
||||||
|
|
||||||
The following changes are required if you are upgrading from the previous version:
|
|
||||||
|
|
||||||
- **Users:**
|
|
||||||
- _Update [2013-02-04]:_ Some users may notice a small subset of deep equality assertions will no longer pass. This is the result of
|
|
||||||
[#120](https://github.com/chaijs/chai/issues/120), an improvement to our deep equality algorithm. Users will need to revise their assertions
|
|
||||||
to be more granular should this occur. Further information: [#139](https://github.com/chaijs/chai/issues/139).
|
|
||||||
- **Plugin Developers:**
|
|
||||||
- No changes required.
|
|
||||||
- **Core Contributors:**
|
|
||||||
- Refresh `node_modules` folder for updated developement dependencies.
|
|
||||||
|
|
||||||
### Community Contributions
|
|
||||||
|
|
||||||
- [#126](https://github.com/chaijs/chai/pull/126): Add `eqls` alias for `eql`. [@RubenVerborgh](https://github.com/RubenVerborgh)
|
|
||||||
- [#127](https://github.com/chaijs/chai/issues/127): Performance refactor for chainable methods. [@RubenVerborgh](https://github.com/RubenVerborgh)
|
|
||||||
- [#133](https://github.com/chaijs/chai/pull/133): Assertion `.throw` support for primitives. [@RubenVerborgh](https://github.com/RubenVerborgh)
|
|
||||||
- [#137](https://github.com/chaijs/chai/issues/137): Assertion `.throw` support for empty messages. [@timnew](https://github.com/timnew)
|
|
||||||
- [#136](https://github.com/chaijs/chai/pull/136): Fix backward negation messages when using `.above()` and `.below()`. [@whatthejeff](https://github.com/whatthejeff)
|
|
||||||
|
|
||||||
Thank you to all who took time to contribute!
|
|
||||||
|
|
||||||
### Other Bug Fixes
|
|
||||||
|
|
||||||
- Improve type detection of `.a()`/`.an()` to work in cross-browser scenarios.
|
|
||||||
- [#116](https://github.com/chaijs/chai/issues/116): `.throw()` has cleaner display of errors when WebKit browsers.
|
|
||||||
- [#120](https://github.com/chaijs/chai/issues/120): `.eql()` now works to compare dom nodes in browsers.
|
|
||||||
|
|
||||||
|
|
||||||
### Usage Updates
|
|
||||||
|
|
||||||
#### For Users
|
|
||||||
|
|
||||||
**1. Component Support:** Chai now included the proper configuration to be installed as a
|
|
||||||
[component](https://github.com/component/component). Component users are encouraged to consult
|
|
||||||
[chaijs.com](http://chaijs.com) for the latest version number as using the master branch
|
|
||||||
does not gaurantee stability.
|
|
||||||
|
|
||||||
```js
|
|
||||||
// relevant component.json
|
|
||||||
devDependencies: {
|
|
||||||
"chaijs/chai": "1.5.0"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Alternatively, bleeding-edge is available:
|
|
||||||
|
|
||||||
$ component install chaijs/chai
|
|
||||||
|
|
||||||
**2. Configurable showDiff:** Some test runners (such as [mocha](http://visionmedia.github.com/mocha/))
|
|
||||||
include support for showing the diff of strings and objects when an equality error occurs. Chai has
|
|
||||||
already included support for this, however some users may not prefer this display behavior. To revert to
|
|
||||||
no diff display, the following configuration is available:
|
|
||||||
|
|
||||||
```js
|
|
||||||
chai.Assertion.showDiff = false; // diff output disabled
|
|
||||||
chai.Assertion.showDiff = true; // default, diff output enabled
|
|
||||||
```
|
|
||||||
|
|
||||||
#### For Plugin Developers
|
|
||||||
|
|
||||||
**1. New Utility - type**: The new utility `.type()` is available as a better implementation of `typeof`
|
|
||||||
that can be used cross-browser. It handles the inconsistencies of Array, `null`, and `undefined` detection.
|
|
||||||
|
|
||||||
- **@param** _{Mixed}_ object to detect type of
|
|
||||||
- **@return** _{String}_ object type
|
|
||||||
|
|
||||||
```js
|
|
||||||
chai.use(function (c, utils) {
|
|
||||||
// some examples
|
|
||||||
utils.type({}); // 'object'
|
|
||||||
utils.type(null); // `null'
|
|
||||||
utils.type(undefined); // `undefined`
|
|
||||||
utils.type([]); // `array`
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
#### For Core Contributors
|
|
||||||
|
|
||||||
**1. Browser Testing**: Browser testing of the `./chai.js` file is now available in the command line
|
|
||||||
via PhantomJS. `make test` and Travis-CI will now also rebuild and test `./chai.js`. Consequently, all
|
|
||||||
pull requests will now be browser tested in this way.
|
|
||||||
|
|
||||||
_Note: Contributors opening pull requests should still NOT include the browser build._
|
|
||||||
|
|
||||||
**2. SauceLabs Testing**: Early SauceLab support has been enabled with the file `./support/mocha-cloud.js`.
|
|
||||||
Those interested in trying it out should create a free [Open Sauce](https://saucelabs.com/signup/plan) account
|
|
||||||
and include their credentials in `./test/auth/sauce.json`.
|
|
@ -1,27 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "chai"
|
|
||||||
, "version": "1.9.2"
|
|
||||||
, "description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic."
|
|
||||||
, "license": "MIT"
|
|
||||||
, "keywords": [
|
|
||||||
"test"
|
|
||||||
, "assertion"
|
|
||||||
, "assert"
|
|
||||||
, "testing"
|
|
||||||
, "chai"
|
|
||||||
]
|
|
||||||
, "main": "chai.js"
|
|
||||||
, "ignore": [
|
|
||||||
"build"
|
|
||||||
, "components"
|
|
||||||
, "lib"
|
|
||||||
, "node_modules"
|
|
||||||
, "support"
|
|
||||||
, "test"
|
|
||||||
, "index.js"
|
|
||||||
, "Makefile"
|
|
||||||
, ".*"
|
|
||||||
]
|
|
||||||
, "dependencies": {}
|
|
||||||
, "devDependencies": {}
|
|
||||||
}
|
|
@ -1,49 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "chai"
|
|
||||||
, "repo": "chaijs/chai"
|
|
||||||
, "version": "1.9.2"
|
|
||||||
, "description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic."
|
|
||||||
, "license": "MIT"
|
|
||||||
, "keywords": [
|
|
||||||
"test"
|
|
||||||
, "assertion"
|
|
||||||
, "assert"
|
|
||||||
, "testing"
|
|
||||||
, "chai"
|
|
||||||
]
|
|
||||||
, "main": "index.js"
|
|
||||||
, "scripts": [
|
|
||||||
"index.js"
|
|
||||||
, "lib/chai.js"
|
|
||||||
, "lib/chai/assertion.js"
|
|
||||||
, "lib/chai/config.js"
|
|
||||||
, "lib/chai/core/assertions.js"
|
|
||||||
, "lib/chai/interface/assert.js"
|
|
||||||
, "lib/chai/interface/expect.js"
|
|
||||||
, "lib/chai/interface/should.js"
|
|
||||||
, "lib/chai/utils/addChainableMethod.js"
|
|
||||||
, "lib/chai/utils/addMethod.js"
|
|
||||||
, "lib/chai/utils/addProperty.js"
|
|
||||||
, "lib/chai/utils/flag.js"
|
|
||||||
, "lib/chai/utils/getActual.js"
|
|
||||||
, "lib/chai/utils/getEnumerableProperties.js"
|
|
||||||
, "lib/chai/utils/getMessage.js"
|
|
||||||
, "lib/chai/utils/getName.js"
|
|
||||||
, "lib/chai/utils/getPathValue.js"
|
|
||||||
, "lib/chai/utils/getProperties.js"
|
|
||||||
, "lib/chai/utils/index.js"
|
|
||||||
, "lib/chai/utils/inspect.js"
|
|
||||||
, "lib/chai/utils/objDisplay.js"
|
|
||||||
, "lib/chai/utils/overwriteMethod.js"
|
|
||||||
, "lib/chai/utils/overwriteProperty.js"
|
|
||||||
, "lib/chai/utils/overwriteChainableMethod.js"
|
|
||||||
, "lib/chai/utils/test.js"
|
|
||||||
, "lib/chai/utils/transferFlags.js"
|
|
||||||
, "lib/chai/utils/type.js"
|
|
||||||
]
|
|
||||||
, "dependencies": {
|
|
||||||
"chaijs/assertion-error": "1.0.0"
|
|
||||||
, "chaijs/deep-eql": "0.1.3"
|
|
||||||
}
|
|
||||||
, "development": {}
|
|
||||||
}
|
|
@ -1,28 +0,0 @@
|
|||||||
module.exports = function(config) {
|
|
||||||
config.set({
|
|
||||||
frameworks: [ 'mocha' ]
|
|
||||||
, files: [
|
|
||||||
'build/build.js'
|
|
||||||
, 'test/bootstrap/karma.js'
|
|
||||||
, 'test/*.js'
|
|
||||||
]
|
|
||||||
, reporters: [ 'progress' ]
|
|
||||||
, colors: true
|
|
||||||
, logLevel: config.LOG_INFO
|
|
||||||
, autoWatch: false
|
|
||||||
, browsers: [ 'PhantomJS' ]
|
|
||||||
, browserDisconnectTimeout: 10000
|
|
||||||
, browserDisconnectTolerance: 2
|
|
||||||
, browserNoActivityTimeout: 20000
|
|
||||||
, singleRun: true
|
|
||||||
});
|
|
||||||
|
|
||||||
switch (process.env.CHAI_TEST_ENV) {
|
|
||||||
case 'sauce':
|
|
||||||
require('./karma.sauce')(config);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
// ...
|
|
||||||
break;
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,41 +0,0 @@
|
|||||||
var version = require('./package.json').version;
|
|
||||||
var ts = new Date().getTime();
|
|
||||||
|
|
||||||
module.exports = function(config) {
|
|
||||||
var auth;
|
|
||||||
|
|
||||||
try {
|
|
||||||
auth = require('./test/auth/index');
|
|
||||||
} catch(ex) {
|
|
||||||
auth = {};
|
|
||||||
auth.SAUCE_USERNAME = process.env.SAUCE_USERNAME || null;
|
|
||||||
auth.SAUCE_ACCESS_KEY = process.env.SAUCE_ACCESS_KEY || null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!auth.SAUCE_USERNAME || !auth.SAUCE_ACCESS_KEY) return;
|
|
||||||
if (process.env.SKIP_SAUCE) return;
|
|
||||||
|
|
||||||
var branch = process.env.TRAVIS_BRANCH || 'local'
|
|
||||||
var browserConfig = require('./sauce.browsers');
|
|
||||||
var browsers = Object.keys(browserConfig);
|
|
||||||
var tags = [ 'chaijs_' + version, auth.SAUCE_USERNAME + '@' + branch ];
|
|
||||||
var tunnel = process.env.TRAVIS_JOB_NUMBER || ts;
|
|
||||||
|
|
||||||
if (process.env.TRAVIS_JOB_NUMBER) {
|
|
||||||
tags.push('travis@' + process.env.TRAVIS_JOB_NUMBER);
|
|
||||||
}
|
|
||||||
|
|
||||||
config.browsers = config.browsers.concat(browsers);
|
|
||||||
config.customLaunchers = browserConfig;
|
|
||||||
config.reporters.push('saucelabs');
|
|
||||||
config.transports = [ 'xhr-polling' ];
|
|
||||||
|
|
||||||
config.sauceLabs = {
|
|
||||||
username: auth.SAUCE_USERNAME
|
|
||||||
, accessKey: auth.SAUCE_ACCESS_KEY
|
|
||||||
, startConnect: true
|
|
||||||
, tags: tags
|
|
||||||
, testName: 'ChaiJS'
|
|
||||||
, tunnelIdentifier: tunnel
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,42 +0,0 @@
|
|||||||
{
|
|
||||||
"author": "Jake Luer <jake@alogicalparadox.com>",
|
|
||||||
"name": "chai",
|
|
||||||
"description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic.",
|
|
||||||
"keywords": [ "test", "assertion", "assert", "testing", "chai" ],
|
|
||||||
"homepage": "http://chaijs.com",
|
|
||||||
"license": "MIT",
|
|
||||||
"contributors": [
|
|
||||||
"Jake Luer <jake@alogicalparadox.com>",
|
|
||||||
"Domenic Denicola <domenic@domenicdenicola.com> (http://domenicdenicola.com)",
|
|
||||||
"Veselin Todorov <hi@vesln.com>",
|
|
||||||
"John Firebaugh <john.firebaugh@gmail.com>"
|
|
||||||
],
|
|
||||||
"version": "1.9.2",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/chaijs/chai"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/chaijs/chai/issues"
|
|
||||||
},
|
|
||||||
"main": "./index",
|
|
||||||
"scripts": {
|
|
||||||
"test": "make test"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 0.4.0"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"assertion-error": "1.0.0"
|
|
||||||
, "deep-eql": "0.1.3"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"component": "*"
|
|
||||||
, "karma": "0.12.x"
|
|
||||||
, "karma-mocha": "*"
|
|
||||||
, "karma-sauce-launcher": "0.2.x"
|
|
||||||
, "karma-phantomjs-launcher": "0.1.1"
|
|
||||||
, "mocha": "1.21.x"
|
|
||||||
, "istanbul": "0.2.x"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,128 +0,0 @@
|
|||||||
|
|
||||||
/*!
|
|
||||||
* Chrome
|
|
||||||
*/
|
|
||||||
|
|
||||||
exports['SL_Chrome'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'chrome'
|
|
||||||
};
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* Firefox
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* TODO: Karma doesn't seem to like this, though sauce boots its up
|
|
||||||
*
|
|
||||||
|
|
||||||
exports['SL_Firefox_23'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'firefox'
|
|
||||||
, platform: 'Windows XP'
|
|
||||||
, version: '23'
|
|
||||||
};
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
exports['SL_Firefox_22'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'firefox'
|
|
||||||
, platform: 'Windows 7'
|
|
||||||
, version: '22'
|
|
||||||
};
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* Opera
|
|
||||||
*/
|
|
||||||
|
|
||||||
exports['SL_Opera_12'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'opera'
|
|
||||||
, platform: 'Windows 7'
|
|
||||||
, version: '12'
|
|
||||||
};
|
|
||||||
|
|
||||||
exports['SL_Opera_11'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'opera'
|
|
||||||
, platform: 'Windows 7'
|
|
||||||
, version: '11'
|
|
||||||
};
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* Internet Explorer
|
|
||||||
*/
|
|
||||||
|
|
||||||
exports['SL_IE_10'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'internet explorer'
|
|
||||||
, platform: 'Windows 2012'
|
|
||||||
, version: '10'
|
|
||||||
};
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* Safari
|
|
||||||
*/
|
|
||||||
|
|
||||||
exports['SL_Safari_6'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'safari'
|
|
||||||
, platform: 'Mac 10.8'
|
|
||||||
, version: '6'
|
|
||||||
};
|
|
||||||
|
|
||||||
exports['SL_Safari_5'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'safari'
|
|
||||||
, platform: 'Mac 10.6'
|
|
||||||
, version: '5'
|
|
||||||
};
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* iPhone
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* TODO: These take forever to boot or shut down. Causes timeout.
|
|
||||||
*
|
|
||||||
|
|
||||||
exports['SL_iPhone_6'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'iphone'
|
|
||||||
, platform: 'Mac 10.8'
|
|
||||||
, version: '6'
|
|
||||||
};
|
|
||||||
|
|
||||||
exports['SL_iPhone_5-1'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'iphone'
|
|
||||||
, platform: 'Mac 10.8'
|
|
||||||
, version: '5.1'
|
|
||||||
};
|
|
||||||
|
|
||||||
exports['SL_iPhone_5'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'iphone'
|
|
||||||
, platform: 'Mac 10.6'
|
|
||||||
, version: '5'
|
|
||||||
};
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* Android
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* TODO: fails because of error serialization
|
|
||||||
*
|
|
||||||
|
|
||||||
exports['SL_Android_4'] = {
|
|
||||||
base: 'SauceLabs'
|
|
||||||
, browserName: 'android'
|
|
||||||
, platform: 'Linux'
|
|
||||||
, version: '4'
|
|
||||||
};
|
|
||||||
|
|
||||||
*/
|
|
@ -1,57 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "mocha",
|
|
||||||
"version": "2.0.1",
|
|
||||||
"homepage": "http://mocha.github.io/mocha",
|
|
||||||
"description": "simple, flexible, fun test framework",
|
|
||||||
"authors": [
|
|
||||||
"TJ Holowaychuk <tj@vision-media.ca>",
|
|
||||||
"Joshua Appelman <joshua@jbna.nl>",
|
|
||||||
"Oleg Gaidarenko <markelog@gmail.com>",
|
|
||||||
"Christoffer Hallas <christoffer.hallas@gmail.com>",
|
|
||||||
"Christopher Hiller <chiller@badwing.com>",
|
|
||||||
"Travis Jeffery <tj@travisjeffery.com>",
|
|
||||||
"Johnathan Ong <me@jongleberry.com>",
|
|
||||||
"Guillermo Rauch <rauchg@gmail.com>"
|
|
||||||
],
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git://github.com/mochajs/mocha.git"
|
|
||||||
},
|
|
||||||
"main": [
|
|
||||||
"mocha.js",
|
|
||||||
"mocha.css"
|
|
||||||
],
|
|
||||||
"ignore": [
|
|
||||||
"bin",
|
|
||||||
"editors",
|
|
||||||
"images",
|
|
||||||
"lib",
|
|
||||||
"support",
|
|
||||||
"test",
|
|
||||||
".gitignore",
|
|
||||||
".npmignore",
|
|
||||||
".travis.yml",
|
|
||||||
"component.json",
|
|
||||||
"index.js",
|
|
||||||
"Makefile",
|
|
||||||
"package.json"
|
|
||||||
],
|
|
||||||
"keywords": [
|
|
||||||
"mocha",
|
|
||||||
"test",
|
|
||||||
"bdd",
|
|
||||||
"tdd",
|
|
||||||
"tap"
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"_release": "2.0.1",
|
|
||||||
"_resolution": {
|
|
||||||
"type": "version",
|
|
||||||
"tag": "2.0.1",
|
|
||||||
"commit": "4727d357ea5633bcaff863438cdb11bf6da9a391"
|
|
||||||
},
|
|
||||||
"_source": "git://github.com/visionmedia/mocha.git",
|
|
||||||
"_target": "~2.0.1",
|
|
||||||
"_originalSource": "mocha",
|
|
||||||
"_direct": true
|
|
||||||
}
|
|
@ -1,18 +0,0 @@
|
|||||||
# This file is for unifying the coding style for different editors and IDEs
|
|
||||||
# editorconfig.org
|
|
||||||
|
|
||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
end_of_line = lf
|
|
||||||
charset = utf-8
|
|
||||||
insert_final_newline = true
|
|
||||||
trim_trailing_whitespace = true
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 2
|
|
||||||
|
|
||||||
[Makefile]
|
|
||||||
indent_style = tab
|
|
||||||
|
|
||||||
[*.md]
|
|
||||||
trim_trailing_whitespace = false
|
|
@ -1,758 +0,0 @@
|
|||||||
2.0.0 / 2014-10-21
|
|
||||||
==================
|
|
||||||
|
|
||||||
* remove: support for node 0.6.x, 0.4.x
|
|
||||||
* fix: landing reporter with non ansi characters (#211)
|
|
||||||
* fix: html reporter - preserve query params when navigating to suites/tests (#1358)
|
|
||||||
* fix: json stream reporter add error message to failed test
|
|
||||||
* fix: fixes for visionmedia -> mochajs
|
|
||||||
* fix: use stdio, fixes node deprecation warnings (#1391)
|
|
||||||
|
|
||||||
1.21.5 / 2014-10-11
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix: build for NodeJS v0.6.x
|
|
||||||
* fix: do not attempt to highlight syntax when non-HTML reporter is used
|
|
||||||
* update: escape-string-regexp to 1.0.2.
|
|
||||||
* fix: botched indentation in canonicalize()
|
|
||||||
* fix: .gitignore: ignore .patch and .diff files
|
|
||||||
* fix: changed 'Catched' to 'Caught' in uncaught exception error handler messages
|
|
||||||
* add: `pending` field for json reporter
|
|
||||||
* fix: Runner.prototype.uncaught: don't double-end runnables that already have a state.
|
|
||||||
* fix: --recursive, broken by f0facd2e
|
|
||||||
* update: replaces escapeRegexp with the escape-string-regexp package.
|
|
||||||
* update: commander to 2.3.0.
|
|
||||||
* update: diff to 1.0.8.
|
|
||||||
* fix: ability to disable syntax highlighting (#1329)
|
|
||||||
* fix: added empty object to errorJSON() call to catch when no error is present
|
|
||||||
* fix: never time out after calling enableTimeouts(false)
|
|
||||||
* fix: timeout(0) will work at suite level (#1300)
|
|
||||||
* Fix for --watch+only() issue (#888 )
|
|
||||||
* fix: respect err.showDiff, add Base reporter test (#810)
|
|
||||||
|
|
||||||
1.22.1-3 / 2014-07-27
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix: disabling timeouts with this.timeout(0) (#1301)
|
|
||||||
|
|
||||||
1.22.1-3 / 2014-07-27
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix: local uis and reporters (#1288)
|
|
||||||
* fix: building 1.21.0's changes in the browser (#1284)
|
|
||||||
|
|
||||||
1.21.0 / 2014-07-23
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add: --no-timeouts option (#1262, #1268)
|
|
||||||
* add: --*- deprecation node flags (#1217)
|
|
||||||
* add: --watch-extensions argument (#1247)
|
|
||||||
* change: spec reporter is default (#1228)
|
|
||||||
* fix: diff output showing incorrect +/- (#1182)
|
|
||||||
* fix: diffs of circular structures (#1179)
|
|
||||||
* fix: re-render the progress bar when progress has changed only (#1151)
|
|
||||||
* fix support for environments with global and window (#1159)
|
|
||||||
* fix: reverting to previously defined onerror handler (#1178)
|
|
||||||
* fix: stringify non error objects passed to done() (#1270)
|
|
||||||
* fix: using local ui, reporters (#1267)
|
|
||||||
* fix: cleaning es6 arrows (#1176)
|
|
||||||
* fix: don't include attrs in failure tag for xunit (#1244)
|
|
||||||
* fix: fail tests that return a promise if promise is rejected w/o a reason (#1224)
|
|
||||||
* fix: showing failed tests in doc reporter (#1117)
|
|
||||||
* fix: dot reporter dots being off (#1204)
|
|
||||||
* fix: catch empty throws (#1219)
|
|
||||||
* fix: honoring timeout for sync operations (#1242)
|
|
||||||
* update: growl to 1.8.0
|
|
||||||
|
|
||||||
1.20.1 / 2014-06-03
|
|
||||||
==================
|
|
||||||
|
|
||||||
* update: should dev dependency to ~4.0.0 (#1231)
|
|
||||||
|
|
||||||
1.20.0 / 2014-05-28
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add: filenames to suite objects (#1222)
|
|
||||||
|
|
||||||
1.19.0 / 2014-05-17
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add: browser script option to package.json
|
|
||||||
* add: export file in Mocha.Test objects (#1174)
|
|
||||||
* add: add docs for wrapped node flags
|
|
||||||
* fix: mocha.run() to return error status in browser (#1216)
|
|
||||||
* fix: clean() to show failure details (#1205)
|
|
||||||
* fix: regex that generates html for new keyword (#1201)
|
|
||||||
* fix: sibling suites have inherited but separate contexts (#1164)
|
|
||||||
|
|
||||||
|
|
||||||
1.18.2 / 2014-03-18
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix: html runner was prevented from using #mocha as the default root el (#1162)
|
|
||||||
|
|
||||||
1.18.1 / 2014-03-18
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix: named before/after hooks in bdd, tdd, qunit interfaces (#1161)
|
|
||||||
|
|
||||||
1.18.0 / 2014-03-13
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add: promise support (#329)
|
|
||||||
* add: named before/after hooks (#966)
|
|
||||||
|
|
||||||
1.17.1 / 2014-01-22
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix: expected messages in should.js (should.js#168)
|
|
||||||
* fix: expect errno global in node versions < v0.9.11 (#1111)
|
|
||||||
* fix: unreliable checkGlobals optimization (#1110)
|
|
||||||
|
|
||||||
1.17.0 / 2014-01-09
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add: able to require globals (describe, it, etc.) through mocha (#1077)
|
|
||||||
* fix: abort previous run on --watch change (#1100)
|
|
||||||
* fix: reset context for each --watch triggered run (#1099)
|
|
||||||
* fix: error when cli can't resolve path or pattern (#799)
|
|
||||||
* fix: canonicalize objects before stringifying and diffing them (#1079)
|
|
||||||
* fix: make CR call behave like carriage return for non tty (#1087)
|
|
||||||
|
|
||||||
|
|
||||||
1.16.2 / 2013-12-23
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix: couple issues with ie 8 (#1082, #1081)
|
|
||||||
* fix: issue running the xunit reporter in browsers (#1068)
|
|
||||||
* fix: issue with firefox < 3.5 (#725)
|
|
||||||
|
|
||||||
|
|
||||||
1.16.1 / 2013-12-19
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix: recompiled for missed changes from the last release
|
|
||||||
|
|
||||||
|
|
||||||
1.16.0 / 2013-12-19
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add: Runnable.globals(arr) for per test global whitelist (#1046)
|
|
||||||
* add: mocha.throwError(err) for assertion libs to call (#985)
|
|
||||||
* remove: --watch's spinner (#806)
|
|
||||||
* fix: duplicate test output for multi-line specs in spec reporter (#1006)
|
|
||||||
* fix: gracefully exit on SIGINT (#1063)
|
|
||||||
* fix expose the specified ui only in the browser (#984)
|
|
||||||
* fix: ensure process exit code is preserved when using --no-exit (#1059)
|
|
||||||
* fix: return true from window.onerror handler (#868)
|
|
||||||
* fix: xunit reporter to use process.stdout.write (#1068)
|
|
||||||
* fix: utils.clean(str) indentation (#761)
|
|
||||||
* fix: xunit reporter returning test duration a NaN (#1039)
|
|
||||||
|
|
||||||
1.15.1 / 2013-12-03
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix: recompiled for missed changes from the last release
|
|
||||||
|
|
||||||
1.15.0 / 2013-12-02
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add: `--no-exit` to prevent `process.exit()` (#1018)
|
|
||||||
* fix: using inline diffs (#1044)
|
|
||||||
* fix: show pending test details in xunit reporter (#1051)
|
|
||||||
* fix: faster global leak detection (#1024)
|
|
||||||
* fix: yui compression (#1035)
|
|
||||||
* fix: wrapping long lines in test results (#1030, #1031)
|
|
||||||
* fix: handle errors in hooks (#1043)
|
|
||||||
|
|
||||||
1.14.0 / 2013-11-02
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add: unified diff (#862)
|
|
||||||
* add: set MOCHA_COLORS env var to use colors (#965)
|
|
||||||
* add: able to override tests links in html reporters (#776)
|
|
||||||
* remove: teamcity reporter (#954)
|
|
||||||
* update: commander dependency to 2.0.0 (#1010)
|
|
||||||
* fix: mocha --ui will try to require the ui if not built in, as --reporter does (#1022)
|
|
||||||
* fix: send cursor commands only if isatty (#184, #1003)
|
|
||||||
* fix: include assertion message in base reporter (#993, #991)
|
|
||||||
* fix: consistent return of it, it.only, and describe, describe.only (#840)
|
|
||||||
|
|
||||||
1.13.0 / 2013-09-15
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add: sort test files with --sort (#813)
|
|
||||||
* update: diff depedency to 1.0.7
|
|
||||||
* update: glob dependency to 3.2.3 (#927)
|
|
||||||
* fix: diffs show whitespace differences (#976)
|
|
||||||
* fix: improve global leaks (#783)
|
|
||||||
* fix: firefox window.getInterface leak
|
|
||||||
* fix: accessing iframe via window[iframeIndex] leak
|
|
||||||
* fix: faster global leak checking
|
|
||||||
* fix: reporter pending css selector (#970)
|
|
||||||
|
|
||||||
1.12.1 / 2013-08-29
|
|
||||||
==================
|
|
||||||
|
|
||||||
* remove test.js from .gitignore
|
|
||||||
* update included version of ms.js
|
|
||||||
|
|
||||||
1.12.0 / 2013-07-01
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add: prevent diffs for differing types. Closes #900
|
|
||||||
* add `Mocha.process` hack for phantomjs
|
|
||||||
* fix: use compilers with requires
|
|
||||||
* fix regexps in diffs. Closes #890
|
|
||||||
* fix xunit NaN on failure. Closes #894
|
|
||||||
* fix: strip tab indentation in `clean` utility method
|
|
||||||
* fix: textmate bundle installation
|
|
||||||
|
|
||||||
1.11.0 / 2013-06-12
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add --prof support
|
|
||||||
* add --harmony support
|
|
||||||
* add --harmony-generators support
|
|
||||||
* add "Uncaught " prefix to uncaught exceptions
|
|
||||||
* add web workers support
|
|
||||||
* add `suite.skip()`
|
|
||||||
* change to output # of pending / passing even on failures. Closes #872
|
|
||||||
* fix: prevent hooks from being called if we are bailing
|
|
||||||
* fix `this.timeout(0)`
|
|
||||||
|
|
||||||
1.10.0 / 2013-05-21
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add add better globbing support for windows via `glob` module
|
|
||||||
* add support to pass through flags such as --debug-brk=1234. Closes #852
|
|
||||||
* add test.only, test.skip to qunit interface
|
|
||||||
* change to always use word-based diffs for now. Closes #733
|
|
||||||
* change `mocha init` tests.html to index.html
|
|
||||||
* fix `process` global leak in the browser
|
|
||||||
* fix: use resolve() instead of join() for --require
|
|
||||||
* fix: filterLeaks() condition to not consider indices in global object as leaks
|
|
||||||
* fix: restrict mocha.css styling to #mocha id
|
|
||||||
* fix: save timer references to avoid Sinon interfering in the browser build.
|
|
||||||
|
|
||||||
1.9.0 / 2013-04-03
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add improved setImmediate implementation
|
|
||||||
* replace --ignore-leaks with --check-leaks
|
|
||||||
* change default of ignoreLeaks to true. Closes #791
|
|
||||||
* remove scrolling for HTML reporter
|
|
||||||
* fix retina support
|
|
||||||
* fix tmbundle, restrict to js scope
|
|
||||||
|
|
||||||
1.8.2 / 2013-03-11
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add `setImmediate` support for 0.10.x
|
|
||||||
* fix mocha -w spinner on windows
|
|
||||||
|
|
||||||
1.8.1 / 2013-01-09
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix .bail() arity check causing it to default to true
|
|
||||||
|
|
||||||
1.8.0 / 2013-01-08
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add Mocha() options bail support
|
|
||||||
* add `Mocha#bail()` method
|
|
||||||
* add instanceof check back for inheriting from Error
|
|
||||||
* add component.json
|
|
||||||
* add diff.js to browser build
|
|
||||||
* update growl
|
|
||||||
* fix TAP reporter failures comment :D
|
|
||||||
|
|
||||||
1.7.4 / 2012-12-06
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add total number of passes and failures to TAP
|
|
||||||
* remove .bind() calls. re #680
|
|
||||||
* fix indexOf. Closes #680
|
|
||||||
|
|
||||||
1.7.3 / 2012-11-30
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix uncaught error support for the browser
|
|
||||||
* revert uncaught "fix" which breaks node
|
|
||||||
|
|
||||||
1.7.2 / 2012-11-28
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix uncaught errors to expose the original error message
|
|
||||||
|
|
||||||
1.7.0 / 2012-11-07
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add `--async-only` support to prevent false positives for missing `done()`
|
|
||||||
* add sorting by filename in code coverage
|
|
||||||
* add HTML 5 doctype to browser template.
|
|
||||||
* add play button to html reporter to rerun a single test
|
|
||||||
* add `this.timeout(ms)` as Suite#timeout(ms). Closes #599
|
|
||||||
* update growl dependency to 1.6.x
|
|
||||||
* fix encoding of test-case ?grep. Closes #637
|
|
||||||
* fix unicode chars on windows
|
|
||||||
* fix dom globals in Opera/IE. Closes #243
|
|
||||||
* fix markdown reporter a tags
|
|
||||||
* fix `this.timeout("5s")` support
|
|
||||||
|
|
||||||
1.6.0 / 2012-10-02
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add object diffs when `err.showDiff` is present
|
|
||||||
* add hiding of empty suites when pass/failures are toggled
|
|
||||||
* add faster `.length` checks to `checkGlobals()` before performing the filter
|
|
||||||
|
|
||||||
1.5.0 / 2012-09-21
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add `ms()` to `.slow()` and `.timeout()`
|
|
||||||
* add `Mocha#checkLeaks()` to re-enable global leak checks
|
|
||||||
* add `this.slow()` option [aheckmann]
|
|
||||||
* add tab, CR, LF to error diffs for now
|
|
||||||
* add faster `.checkGlobals()` solution [guille]
|
|
||||||
* remove `fn.call()` from reduce util
|
|
||||||
* remove `fn.call()` from filter util
|
|
||||||
* fix forEach. Closes #582
|
|
||||||
* fix relaying of signals [TooTallNate]
|
|
||||||
* fix TAP reporter grep number
|
|
||||||
|
|
||||||
1.4.2 / 2012-09-01
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add support to multiple `Mocha#globals()` calls, and strings
|
|
||||||
* add `mocha.reporter()` constructor support [jfirebaugh]
|
|
||||||
* add `mocha.timeout()`
|
|
||||||
* move query-string parser to utils.js
|
|
||||||
* move highlight code to utils.js
|
|
||||||
* fix third-party reporter support [exogen]
|
|
||||||
* fix client-side API to match node-side [jfirebaugh]
|
|
||||||
* fix mocha in iframe [joliss]
|
|
||||||
|
|
||||||
1.4.1 / 2012-08-28
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add missing `Markdown` export
|
|
||||||
* fix `Mocha#grep()`, escape regexp strings
|
|
||||||
* fix reference error when `devicePixelRatio` is not defined. Closes #549
|
|
||||||
|
|
||||||
1.4.0 / 2012-08-22
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add mkdir -p to `mocha init`. Closes #539
|
|
||||||
* add `.only()`. Closes #524
|
|
||||||
* add `.skip()`. Closes #524
|
|
||||||
* change str.trim() to use utils.trim(). Closes #533
|
|
||||||
* fix HTML progress indicator retina display
|
|
||||||
* fix url-encoding of click-to-grep HTML functionality
|
|
||||||
|
|
||||||
1.3.2 / 2012-08-01
|
|
||||||
==================
|
|
||||||
|
|
||||||
* fix exports double-execution regression. Closes #531
|
|
||||||
|
|
||||||
1.3.1 / 2012-08-01
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add passes/failures toggling to HTML reporter
|
|
||||||
* add pending state to `xit()` and `xdescribe()` [Brian Moore]
|
|
||||||
* add the @charset "UTF-8"; to fix #522 with FireFox. [Jonathan Creamer]
|
|
||||||
* add border-bottom to #stats links
|
|
||||||
* add check for runnable in `Runner#uncaught()`. Closes #494
|
|
||||||
* add 0.4 and 0.6 back to travis.yml
|
|
||||||
* add `-E, --growl-errors` to growl on failures only
|
|
||||||
* add prefixes to debug() names. Closes #497
|
|
||||||
* add `Mocha#invert()` to js api
|
|
||||||
* change dot reporter to use sexy unicode dots
|
|
||||||
* fix error when clicking pending test in HTML reporter
|
|
||||||
* fix `make tm`
|
|
||||||
|
|
||||||
1.3.0 / 2012-07-05
|
|
||||||
==================
|
|
||||||
|
|
||||||
* add window scrolling to `HTML` reporter
|
|
||||||
* add v8 `--trace-*` option support
|
|
||||||
* add support for custom reports via `--reporter MODULE`
|
|
||||||
* add `--invert` switch to invert `--grep` matches
|
|
||||||
* fix export of `Nyan` reporter. Closes #495
|
|
||||||
* fix escaping of `HTML` suite titles. Closes #486
|
|
||||||
* fix `done()` called multiple times with an error test
|
|
||||||
* change `--grep` - regexp escape the input
|
|
||||||
|
|
||||||
1.2.2 / 2012-06-28
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added 0.8.0 support
|
|
||||||
|
|
||||||
1.2.1 / 2012-06-25
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `this.test.error(err)` support to after each hooks. Closes #287
|
|
||||||
* Added: export top-level suite on global mocha object (mocha.suite). Closes #448
|
|
||||||
* Fixed `js` code block format error in markdown reporter
|
|
||||||
* Fixed deprecation warning when using `path.existsSync`
|
|
||||||
* Fixed --globals with wildcard
|
|
||||||
* Fixed chars in nyan when his head moves back
|
|
||||||
* Remove `--growl` from test/mocha.opts. Closes #289
|
|
||||||
|
|
||||||
1.2.0 / 2012-06-17
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `nyan` reporter [Atsuya Takagi]
|
|
||||||
* Added `mocha init <path>` to copy client files
|
|
||||||
* Added "specify" synonym for "it" [domenic]
|
|
||||||
* Added global leak wildcard support [nathanbowser]
|
|
||||||
* Fixed runner emitter leak. closes #432
|
|
||||||
* Fixed omission of .js extension. Closes #454
|
|
||||||
|
|
||||||
1.1.0 / 2012-05-30
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added: check each `mocha(1)` arg for directories to walk
|
|
||||||
* Added `--recursive` [tricknotes]
|
|
||||||
* Added `context` for BDD [hokaccha]
|
|
||||||
* Added styling for new clickable titles
|
|
||||||
* Added clickable suite titles to HTML reporter
|
|
||||||
* Added warning when strings are thrown as errors
|
|
||||||
* Changed: green arrows again in HTML reporter styling
|
|
||||||
* Changed ul/li elements instead of divs for better copy-and-pasting [joliss]
|
|
||||||
* Fixed issue #325 - add better grep support to js api
|
|
||||||
* Fixed: save timer references to avoid Sinon interfering.
|
|
||||||
|
|
||||||
1.0.3 / 2012-04-30
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed string diff newlines
|
|
||||||
* Fixed: removed mocha.css target. Closes #401
|
|
||||||
|
|
||||||
1.0.2 / 2012-04-25
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added HTML reporter duration. Closes #47
|
|
||||||
* Fixed: one postMessage event listener [exogen]
|
|
||||||
* Fixed: allow --globals to be used multiple times. Closes #100 [brendannee]
|
|
||||||
* Fixed #158: removes jquery include from browser tests
|
|
||||||
* Fixed grep. Closes #372 [brendannee]
|
|
||||||
* Fixed #166 - When grepping don't display the empty suites
|
|
||||||
* Removed test/browser/style.css. Closes #385
|
|
||||||
|
|
||||||
1.0.1 / 2012-04-04
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed `.timeout()` in hooks
|
|
||||||
* Fixed: allow callback for `mocha.run()` in client version
|
|
||||||
* Fixed browser hook error display. Closes #361
|
|
||||||
|
|
||||||
1.0.0 / 2012-03-24
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added js API. Closes #265
|
|
||||||
* Added: initial run of tests with `--watch`. Closes #345
|
|
||||||
* Added: mark `location` as a global on the CS. Closes #311
|
|
||||||
* Added `markdown` reporter (github flavour)
|
|
||||||
* Added: scrolling menu to coverage.html. Closes #335
|
|
||||||
* Added source line to html report for Safari [Tyson Tate]
|
|
||||||
* Added "min" reporter, useful for `--watch` [Jakub Nešetřil]
|
|
||||||
* Added support for arbitrary compilers via . Closes #338 [Ian Young]
|
|
||||||
* Added Teamcity export to lib/reporters/index [Michael Riley]
|
|
||||||
* Fixed chopping of first char in error reporting. Closes #334 [reported by topfunky]
|
|
||||||
* Fixed terrible FF / Opera stack traces
|
|
||||||
|
|
||||||
0.14.1 / 2012-03-06
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added lib-cov to _.npmignore_
|
|
||||||
* Added reporter to `mocha.run([reporter])` as argument
|
|
||||||
* Added some margin-top to the HTML reporter
|
|
||||||
* Removed jQuery dependency
|
|
||||||
* Fixed `--watch`: purge require cache. Closes #266
|
|
||||||
|
|
||||||
0.14.0 / 2012-03-01
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added string diff support for terminal reporters
|
|
||||||
|
|
||||||
0.13.0 / 2012-02-23
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added preliminary test coverage support. Closes #5
|
|
||||||
* Added `HTMLCov` reporter
|
|
||||||
* Added `JSONCov` reporter [kunklejr]
|
|
||||||
* Added `xdescribe()` and `xit()` to the BDD interface. Closes #263 (docs * Changed: make json reporter output pretty json
|
|
||||||
* Fixed node-inspector support, swapped `--debug` for `debug` to match node.
|
|
||||||
needed)
|
|
||||||
Closes #247
|
|
||||||
|
|
||||||
0.12.1 / 2012-02-14
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `npm docs mocha` support [TooTallNate]
|
|
||||||
* Added a `Context` object used for hook and test-case this. Closes #253
|
|
||||||
* Fixed `Suite#clone()` `.ctx` reference. Closes #262
|
|
||||||
|
|
||||||
0.12.0 / 2012-02-02
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added .coffee `--watch` support. Closes #242
|
|
||||||
* Added support to `--require` files relative to the CWD. Closes #241
|
|
||||||
* Added quick n dirty syntax highlighting. Closes #248
|
|
||||||
* Changed: made HTML progress indicator smaller
|
|
||||||
* Fixed xunit errors attribute [dhendo]
|
|
||||||
|
|
||||||
0.10.2 / 2012-01-21
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed suite count in reporter stats. Closes #222
|
|
||||||
* Fixed `done()` after timeout error reporting [Phil Sung]
|
|
||||||
* Changed the 0-based errors to 1
|
|
||||||
|
|
||||||
0.10.1 / 2012-01-17
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added support for node 0.7.x
|
|
||||||
* Fixed absolute path support. Closes #215 [kompiro]
|
|
||||||
* Fixed `--no-colors` option [Jussi Virtanen]
|
|
||||||
* Fixed Arial CSS typo in the correct file
|
|
||||||
|
|
||||||
0.10.0 / 2012-01-13
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `-b, --bail` to exit on first exception [guillermo]
|
|
||||||
* Added support for `-gc` / `--expose-gc` [TooTallNate]
|
|
||||||
* Added `qunit`-inspired interface
|
|
||||||
* Added MIT LICENSE. Closes #194
|
|
||||||
* Added: `--watch` all .js in the CWD. Closes #139
|
|
||||||
* Fixed `self.test` reference in runner. Closes #189
|
|
||||||
* Fixed double reporting of uncaught exceptions after timeout. Closes #195
|
|
||||||
|
|
||||||
0.8.2 / 2012-01-05
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added test-case context support. Closes #113
|
|
||||||
* Fixed exit status. Closes #187
|
|
||||||
* Update commander. Closes #190
|
|
||||||
|
|
||||||
0.8.1 / 2011-12-30
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed reporting of uncaught exceptions. Closes #183
|
|
||||||
* Fixed error message defaulting [indutny]
|
|
||||||
* Changed mocha(1) from bash to node for windows [Nathan Rajlich]
|
|
||||||
|
|
||||||
0.8.0 / 2011-12-28
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `XUnit` reporter [FeeFighters/visionmedia]
|
|
||||||
* Added `say(1)` notification support [Maciej Małecki]
|
|
||||||
* Changed: fail when done() is invoked with a non-Error. Closes #171
|
|
||||||
* Fixed `err.stack`, defaulting to message. Closes #180
|
|
||||||
* Fixed: `make tm` mkdir -p the dest. Closes #137
|
|
||||||
* Fixed mocha(1) --help bin name
|
|
||||||
* Fixed `-d` for `--debug` support
|
|
||||||
|
|
||||||
0.7.1 / 2011-12-22
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Removed `mocha-debug(1)`, use `mocha --debug`
|
|
||||||
* Fixed CWD relative requires
|
|
||||||
* Fixed growl issue on windows [Raynos]
|
|
||||||
* Fixed: platform specific line endings [TooTallNate]
|
|
||||||
* Fixed: escape strings in HTML reporter. Closes #164
|
|
||||||
|
|
||||||
0.7.0 / 2011-12-18
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added support for IE{7,8} [guille]
|
|
||||||
* Changed: better browser nextTick implementation [guille]
|
|
||||||
|
|
||||||
0.6.0 / 2011-12-18
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added setZeroTimeout timeout for browser (nicer stack traces). Closes #153
|
|
||||||
* Added "view source" on hover for HTML reporter to make it obvious
|
|
||||||
* Changed: replace custom growl with growl lib
|
|
||||||
* Fixed duplicate reporting for HTML reporter. Closes #154
|
|
||||||
* Fixed silent hook errors in the HTML reporter. Closes #150
|
|
||||||
|
|
||||||
0.5.0 / 2011-12-14
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added: push node_modules directory onto module.paths for relative require Closes #93
|
|
||||||
* Added teamcity reporter [blindsey]
|
|
||||||
* Fixed: recover from uncaught exceptions for tests. Closes #94
|
|
||||||
* Fixed: only emit "test end" for uncaught within test, not hook
|
|
||||||
|
|
||||||
0.4.0 / 2011-12-14
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added support for test-specific timeouts via `this.timeout(0)`. Closes #134
|
|
||||||
* Added guillermo's client-side EventEmitter. Closes #132
|
|
||||||
* Added progress indicator to the HTML reporter
|
|
||||||
* Fixed slow browser tests. Closes #135
|
|
||||||
* Fixed "suite" color for light terminals
|
|
||||||
* Fixed `require()` leak spotted by [guillermo]
|
|
||||||
|
|
||||||
0.3.6 / 2011-12-09
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Removed suite merging (for now)
|
|
||||||
|
|
||||||
0.3.5 / 2011-12-08
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added support for `window.onerror` [guillermo]
|
|
||||||
* Fixed: clear timeout on uncaught exceptions. Closes #131 [guillermo]
|
|
||||||
* Added `mocha.css` to PHONY list.
|
|
||||||
* Added `mocha.js` to PHONY list.
|
|
||||||
|
|
||||||
0.3.4 / 2011-12-08
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added: allow `done()` to be called with non-Error
|
|
||||||
* Added: return Runner from `mocha.run()`. Closes #126
|
|
||||||
* Fixed: run afterEach even on failures. Closes #125
|
|
||||||
* Fixed clobbering of current runnable. Closes #121
|
|
||||||
|
|
||||||
0.3.3 / 2011-12-08
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed hook timeouts. Closes #120
|
|
||||||
* Fixed uncaught exceptions in hooks
|
|
||||||
|
|
||||||
0.3.2 / 2011-12-05
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed weird reporting when `err.message` is not present
|
|
||||||
|
|
||||||
0.3.1 / 2011-12-04
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed hook event emitter leak. Closes #117
|
|
||||||
* Fixed: export `Spec` constructor. Closes #116
|
|
||||||
|
|
||||||
0.3.0 / 2011-12-04
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `-w, --watch`. Closes #72
|
|
||||||
* Added `--ignore-leaks` to ignore global leak checking
|
|
||||||
* Added browser `?grep=pattern` support
|
|
||||||
* Added `--globals <names>` to specify accepted globals. Closes #99
|
|
||||||
* Fixed `mocha-debug(1)` on some systems. Closes #232
|
|
||||||
* Fixed growl total, use `runner.total`
|
|
||||||
|
|
||||||
0.2.0 / 2011-11-30
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `--globals <names>` to specify accepted globals. Closes #99
|
|
||||||
* Fixed funky highlighting of messages. Closes #97
|
|
||||||
* Fixed `mocha-debug(1)`. Closes #232
|
|
||||||
* Fixed growl total, use runner.total
|
|
||||||
|
|
||||||
0.1.0 / 2011-11-29
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `suiteSetup` and `suiteTeardown` to TDD interface [David Henderson]
|
|
||||||
* Added growl icons. Closes #84
|
|
||||||
* Fixed coffee-script support
|
|
||||||
|
|
||||||
0.0.8 / 2011-11-25
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed: use `Runner#total` for accurate reporting
|
|
||||||
|
|
||||||
0.0.7 / 2011-11-25
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `Hook`
|
|
||||||
* Added `Runnable`
|
|
||||||
* Changed: `Test` is `Runnable`
|
|
||||||
* Fixed global leak reporting in hooks
|
|
||||||
* Fixed: > 2 calls to done() only report the error once
|
|
||||||
* Fixed: clear timer on failure. Closes #80
|
|
||||||
|
|
||||||
0.0.6 / 2011-11-25
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed return on immediate async error. Closes #80
|
|
||||||
|
|
||||||
0.0.5 / 2011-11-24
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed: make mocha.opts whitespace less picky [kkaefer]
|
|
||||||
|
|
||||||
0.0.4 / 2011-11-24
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `--interfaces`
|
|
||||||
* Added `--reporters`
|
|
||||||
* Added `-c, --colors`. Closes #69
|
|
||||||
* Fixed hook timeouts
|
|
||||||
|
|
||||||
0.0.3 / 2011-11-23
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `-C, --no-colors` to explicitly disable
|
|
||||||
* Added coffee-script support
|
|
||||||
|
|
||||||
0.0.2 / 2011-11-22
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed global leak detection due to Safari bind() change
|
|
||||||
* Fixed: escape html entities in Doc reporter
|
|
||||||
* Fixed: escape html entities in HTML reporter
|
|
||||||
* Fixed pending test support for HTML reporter. Closes #66
|
|
||||||
|
|
||||||
0.0.1 / 2011-11-22
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `--timeout` second shorthand support, ex `--timeout 3s`.
|
|
||||||
* Fixed "test end" event for uncaughtExceptions. Closes #61
|
|
||||||
|
|
||||||
0.0.1-alpha6 / 2011-11-19
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added travis CI support (needs enabling when public)
|
|
||||||
* Added preliminary browser support
|
|
||||||
* Added `make mocha.css` target. Closes #45
|
|
||||||
* Added stack trace to TAP errors. Closes #52
|
|
||||||
* Renamed tearDown to teardown. Closes #49
|
|
||||||
* Fixed: cascading hooksc. Closes #30
|
|
||||||
* Fixed some colors for non-tty
|
|
||||||
* Fixed errors thrown in sync test-cases due to nextTick
|
|
||||||
* Fixed Base.window.width... again give precedence to 0.6.x
|
|
||||||
|
|
||||||
0.0.1-alpha5 / 2011-11-17
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `doc` reporter. Closes #33
|
|
||||||
* Added suite merging. Closes #28
|
|
||||||
* Added TextMate bundle and `make tm`. Closes #20
|
|
||||||
|
|
||||||
0.0.1-alpha4 / 2011-11-15
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Fixed getWindowSize() for 0.4.x
|
|
||||||
|
|
||||||
0.0.1-alpha3 / 2011-11-15
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Added `-s, --slow <ms>` to specify "slow" test threshold
|
|
||||||
* Added `mocha-debug(1)`
|
|
||||||
* Added `mocha.opts` support. Closes #31
|
|
||||||
* Added: default [files] to _test/*.js_
|
|
||||||
* Added protection against multiple calls to `done()`. Closes #35
|
|
||||||
* Changed: bright yellow for slow Dot reporter tests
|
|
||||||
|
|
||||||
0.0.1-alpha1 / 2011-11-08
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Missed this one :)
|
|
||||||
|
|
||||||
0.0.1-alpha1 / 2011-11-08
|
|
||||||
==================
|
|
||||||
|
|
||||||
* Initial release
|
|
@ -1,22 +0,0 @@
|
|||||||
(The MIT License)
|
|
||||||
|
|
||||||
Copyright (c) 2011-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of this software and associated documentation files (the
|
|
||||||
'Software'), to deal in the Software without restriction, including
|
|
||||||
without limitation the rights to use, copy, modify, merge, publish,
|
|
||||||
distribute, sublicense, and/or sell copies of the Software, and to
|
|
||||||
permit persons to whom the Software is furnished to do so, subject to
|
|
||||||
the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be
|
|
||||||
included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
||||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
||||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
||||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -1,203 +0,0 @@
|
|||||||
[](http://travis-ci.org/mochajs/mocha)
|
|
||||||
|
|
||||||
[](http://mochajs.org)
|
|
||||||
|
|
||||||
Mocha is a simple, flexible, fun JavaScript test framework for node.js and the browser. For more information view the [documentation](http://mochajs.org).
|
|
||||||
|
|
||||||
## Contributors
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
project : mocha
|
|
||||||
repo age : 2 years, 11 months
|
|
||||||
active : 433 days
|
|
||||||
commits : 1424
|
|
||||||
files : 143
|
|
||||||
authors :
|
|
||||||
588 TJ Holowaychuk 41.3%
|
|
||||||
389 Tj Holowaychuk 27.3%
|
|
||||||
98 Travis Jeffery 6.9%
|
|
||||||
31 Guillermo Rauch 2.2%
|
|
||||||
13 Attila Domokos 0.9%
|
|
||||||
10 John Firebaugh 0.7%
|
|
||||||
8 Jo Liss 0.6%
|
|
||||||
7 Joshua Appelman 0.5%
|
|
||||||
7 Nathan Rajlich 0.5%
|
|
||||||
6 Brendan Nee 0.4%
|
|
||||||
6 James Carr 0.4%
|
|
||||||
6 Mike Pennisi 0.4%
|
|
||||||
5 Raynos 0.4%
|
|
||||||
5 Aaron Heckmann 0.4%
|
|
||||||
5 Ryunosuke SATO 0.4%
|
|
||||||
4 Forbes Lindesay 0.3%
|
|
||||||
4 Domenic Denicola 0.3%
|
|
||||||
4 Xavier Antoviaque 0.3%
|
|
||||||
4 hokaccha 0.3%
|
|
||||||
4 Jonathan Ong 0.3%
|
|
||||||
4 Joshua Krall 0.3%
|
|
||||||
3 Ben Lindsey 0.2%
|
|
||||||
3 Benjie Gillam 0.2%
|
|
||||||
3 Fredrik Enestad 0.2%
|
|
||||||
3 Sindre Sorhus 0.2%
|
|
||||||
3 Cory Thomas 0.2%
|
|
||||||
3 Mathieu Desvé 0.2%
|
|
||||||
3 Tyson Tate 0.2%
|
|
||||||
3 Valentin Agachi 0.2%
|
|
||||||
3 Wil Moore III 0.2%
|
|
||||||
3 Jesse Dailey 0.2%
|
|
||||||
3 Merrick Christensen 0.2%
|
|
||||||
3 eiji.ienaga 0.2%
|
|
||||||
3 fool2fish 0.2%
|
|
||||||
3 Nathan Bowser 0.2%
|
|
||||||
3 Paul Miller 0.2%
|
|
||||||
2 FARKAS Máté 0.1%
|
|
||||||
2 Shawn Krisman 0.1%
|
|
||||||
2 Jacob Wejendorp 0.1%
|
|
||||||
2 Jonas Westerlund 0.1%
|
|
||||||
2 Paul Armstrong 0.1%
|
|
||||||
2 Konstantin Käfer 0.1%
|
|
||||||
2 Michael Riley 0.1%
|
|
||||||
2 Michael Schoonmaker 0.1%
|
|
||||||
2 Andreas Lind Petersen 0.1%
|
|
||||||
2 domenic 0.1%
|
|
||||||
2 Quang Van 0.1%
|
|
||||||
2 fcrisci 0.1%
|
|
||||||
2 Nathan Alderson 0.1%
|
|
||||||
2 travis jeffery 0.1%
|
|
||||||
2 Juzer Ali 0.1%
|
|
||||||
2 Pete Hawkins 0.1%
|
|
||||||
2 Justin DuJardin 0.1%
|
|
||||||
2 David Henderson 0.1%
|
|
||||||
2 jsdevel 0.1%
|
|
||||||
2 Timo Tijhof 0.1%
|
|
||||||
2 Brian Beck 0.1%
|
|
||||||
2 Simon Gaeremynck 0.1%
|
|
||||||
2 Ian Storm Taylor 0.1%
|
|
||||||
2 Arian Stolwijk 0.1%
|
|
||||||
2 Alexander Early 0.1%
|
|
||||||
2 Ben Bradley 0.1%
|
|
||||||
2 Glen Mailer 0.1%
|
|
||||||
1 Maciej Małecki 0.1%
|
|
||||||
1 Mal Graty 0.1%
|
|
||||||
1 Marc Kuo 0.1%
|
|
||||||
1 Matija Marohnić 0.1%
|
|
||||||
1 Matt Robenolt 0.1%
|
|
||||||
1 Matt Smith 0.1%
|
|
||||||
1 Matthew Shanley 0.1%
|
|
||||||
1 Mattias Tidlund 0.1%
|
|
||||||
1 Michael Jackson 0.1%
|
|
||||||
1 Nathan Black 0.1%
|
|
||||||
1 Nick Fitzgerald 0.1%
|
|
||||||
1 Noshir Patel 0.1%
|
|
||||||
1 Panu Horsmalahti 0.1%
|
|
||||||
1 Phil Sung 0.1%
|
|
||||||
1 R56 0.1%
|
|
||||||
1 Refael Ackermann 0.1%
|
|
||||||
1 Richard Dingwall 0.1%
|
|
||||||
1 Romain Prieto 0.1%
|
|
||||||
1 Roman Neuhauser 0.1%
|
|
||||||
1 Roman Shtylman 0.1%
|
|
||||||
1 Russ Bradberry 0.1%
|
|
||||||
1 Russell Munson 0.1%
|
|
||||||
1 Rustem Mustafin 0.1%
|
|
||||||
1 Salehen Shovon Rahman 0.1%
|
|
||||||
1 Sasha Koss 0.1%
|
|
||||||
1 Seiya Konno 0.1%
|
|
||||||
1 Shaine Hatch 0.1%
|
|
||||||
1 Simon Goumaz 0.1%
|
|
||||||
1 Standa Opichal 0.1%
|
|
||||||
1 Stephen Mathieson 0.1%
|
|
||||||
1 Steve Mason 0.1%
|
|
||||||
1 Tapiwa Kelvin 0.1%
|
|
||||||
1 Teddy Zeenny 0.1%
|
|
||||||
1 Tim Ehat 0.1%
|
|
||||||
1 Vadim Nikitin 0.1%
|
|
||||||
1 Victor Costan 0.1%
|
|
||||||
1 Will Langstroth 0.1%
|
|
||||||
1 Yanis Wang 0.1%
|
|
||||||
1 Yuest Wang 0.1%
|
|
||||||
1 Zsolt Takács 0.1%
|
|
||||||
1 abrkn 0.1%
|
|
||||||
1 airportyh 0.1%
|
|
||||||
1 badunk 0.1%
|
|
||||||
1 claudyus 0.1%
|
|
||||||
1 fengmk2 0.1%
|
|
||||||
1 gaye 0.1%
|
|
||||||
1 grasGendarme 0.1%
|
|
||||||
1 lakmeer 0.1%
|
|
||||||
1 lodr 0.1%
|
|
||||||
1 qiuzuhui 0.1%
|
|
||||||
1 sebv 0.1%
|
|
||||||
1 tgautier@yahoo.com 0.1%
|
|
||||||
1 traleig1 0.1%
|
|
||||||
1 vlad 0.1%
|
|
||||||
1 yuitest 0.1%
|
|
||||||
1 Adam Crabtree 0.1%
|
|
||||||
1 Andreas Brekken 0.1%
|
|
||||||
1 Andrew Nesbitt 0.1%
|
|
||||||
1 Andrey Popp 0.1%
|
|
||||||
1 Arnaud Brousseau 0.1%
|
|
||||||
1 Atsuya Takagi 0.1%
|
|
||||||
1 Austin Birch 0.1%
|
|
||||||
1 Ben Noordhuis 0.1%
|
|
||||||
1 Bjørge Næss 0.1%
|
|
||||||
1 Brian Lalor 0.1%
|
|
||||||
1 Brian M. Carlson 0.1%
|
|
||||||
1 Brian Moore 0.1%
|
|
||||||
1 Bryan Donovan 0.1%
|
|
||||||
1 Casey Foster 0.1%
|
|
||||||
1 ChrisWren 0.1%
|
|
||||||
1 Christopher Hiller 0.1%
|
|
||||||
1 Corey Butler 0.1%
|
|
||||||
1 Daniel Stockman 0.1%
|
|
||||||
1 Dave McKenna 0.1%
|
|
||||||
1 Denis Bardadym 0.1%
|
|
||||||
1 Devin Weaver 0.1%
|
|
||||||
1 Di Wu 0.1%
|
|
||||||
1 Dmitry Shirokov 0.1%
|
|
||||||
1 Fedor Indutny 0.1%
|
|
||||||
1 Florian Margaine 0.1%
|
|
||||||
1 Frederico Silva 0.1%
|
|
||||||
1 Fredrik Lindin 0.1%
|
|
||||||
1 Gareth Aye 0.1%
|
|
||||||
1 Gareth Murphy 0.1%
|
|
||||||
1 Gavin Mogan 0.1%
|
|
||||||
1 Giovanni Bassi 0.1%
|
|
||||||
1 Glen Huang 0.1%
|
|
||||||
1 Greg Perkins 0.1%
|
|
||||||
1 Harish 0.1%
|
|
||||||
1 Harry Brundage 0.1%
|
|
||||||
1 Herman Junge 0.1%
|
|
||||||
1 Ian Young 0.1%
|
|
||||||
1 Ivan 0.1%
|
|
||||||
1 JP Bochi 0.1%
|
|
||||||
1 Jaakko Salonen 0.1%
|
|
||||||
1 Jakub Nešetřil 0.1%
|
|
||||||
1 James Bowes 0.1%
|
|
||||||
1 James Lal 0.1%
|
|
||||||
1 Jan Kopriva 0.1%
|
|
||||||
1 Jason Barry 0.1%
|
|
||||||
1 Javier Aranda 0.1%
|
|
||||||
1 Jean Ponchon 0.1%
|
|
||||||
1 Jeff Kunkle 0.1%
|
|
||||||
1 Jeremy Martin 0.1%
|
|
||||||
1 Jimmy Cuadra 0.1%
|
|
||||||
1 John Doty 0.1%
|
|
||||||
1 Jonathan Creamer 0.1%
|
|
||||||
1 Jonathan Park 0.1%
|
|
||||||
1 Jussi Virtanen 0.1%
|
|
||||||
1 Katie Gengler 0.1%
|
|
||||||
1 Kazuhito Hokamura 0.1%
|
|
||||||
1 Kirill Korolyov 0.1%
|
|
||||||
1 Koen Punt 0.1%
|
|
||||||
1 Laszlo Bacsi 0.1%
|
|
||||||
1 Liam Newman 0.1%
|
|
||||||
1 Linus Unnebäck 0.1%
|
|
||||||
1 László Bácsi 0.1%
|
|
||||||
```
|
|
||||||
|
|
||||||
## Links
|
|
||||||
|
|
||||||
- [Google Group](http://groups.google.com/group/mochajs)
|
|
||||||
- [Wiki](https://github.com/mochajs/mocha/wiki)
|
|
||||||
- Mocha [Extensions and reporters](https://github.com/mochajs/mocha/wiki)
|
|
@ -1,47 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "mocha",
|
|
||||||
"version": "2.0.1",
|
|
||||||
"homepage": "http://mocha.github.io/mocha",
|
|
||||||
"description": "simple, flexible, fun test framework",
|
|
||||||
"authors": [
|
|
||||||
"TJ Holowaychuk <tj@vision-media.ca>",
|
|
||||||
"Joshua Appelman <joshua@jbna.nl>",
|
|
||||||
"Oleg Gaidarenko <markelog@gmail.com>",
|
|
||||||
"Christoffer Hallas <christoffer.hallas@gmail.com>",
|
|
||||||
"Christopher Hiller <chiller@badwing.com>",
|
|
||||||
"Travis Jeffery <tj@travisjeffery.com>",
|
|
||||||
"Johnathan Ong <me@jongleberry.com>",
|
|
||||||
"Guillermo Rauch <rauchg@gmail.com>"
|
|
||||||
],
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git://github.com/mochajs/mocha.git"
|
|
||||||
},
|
|
||||||
"main": [
|
|
||||||
"mocha.js",
|
|
||||||
"mocha.css"
|
|
||||||
],
|
|
||||||
"ignore": [
|
|
||||||
"bin",
|
|
||||||
"editors",
|
|
||||||
"images",
|
|
||||||
"lib",
|
|
||||||
"support",
|
|
||||||
"test",
|
|
||||||
".gitignore",
|
|
||||||
".npmignore",
|
|
||||||
".travis.yml",
|
|
||||||
"component.json",
|
|
||||||
"index.js",
|
|
||||||
"Makefile",
|
|
||||||
"package.json"
|
|
||||||
],
|
|
||||||
"keywords": [
|
|
||||||
"mocha",
|
|
||||||
"test",
|
|
||||||
"bdd",
|
|
||||||
"tdd",
|
|
||||||
"tap"
|
|
||||||
],
|
|
||||||
"license": "MIT"
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
||||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="612px" height="792px" viewBox="0 0 612 792" enable-background="new 0 0 612 792" xml:space="preserve">
|
|
||||||
<circle fill="#8A6343" cx="306" cy="396" r="306"/>
|
|
||||||
<text transform="matrix(1 0 0 1 72.1431 424.7633)" fill="#FFFFFF" font-family="'HelveticaNeue'" font-size="153">mocha</text>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 658 B |
Loading…
Reference in New Issue