chai 3.4.1 → 3.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,58 @@
1
+ # Contributor Code of Conduct
2
+
3
+ > Read in: [Español](http://contributor-covenant.org/version/1/3/0/es/) |
4
+ [Français](http://contributor-covenant.org/version/1/3/0/fr/) |
5
+ [Italiano](http://contributor-covenant.org/version/1/3/0/it/) |
6
+ [Magyar](http://contributor-covenant.org/version/1/3/0/hu/) |
7
+ [Polskie](http://contributor-covenant.org/version/1/3/0/pl/) |
8
+ [Português](http://contributor-covenant.org/version/1/3/0/pt/) |
9
+ [Português do Brasil](http://contributor-covenant.org/version/1/3/0/pt_br/)
10
+
11
+ As contributors and maintainers of this project, and in the interest of
12
+ fostering an open and welcoming community, we pledge to respect all people who
13
+ contribute through reporting issues, posting feature requests, updating
14
+ documentation, submitting pull requests or patches, and other activities.
15
+
16
+ We are committed to making participation in this project a harassment-free
17
+ experience for everyone, regardless of level of experience, gender, gender
18
+ identity and expression, sexual orientation, disability, personal appearance,
19
+ body size, race, ethnicity, age, religion, or nationality.
20
+
21
+ Examples of unacceptable behavior by participants include:
22
+
23
+ * The use of sexualized language or imagery
24
+ * Personal attacks
25
+ * Trolling or insulting/derogatory comments
26
+ * Public or private harassment
27
+ * Publishing other's private information, such as physical or electronic
28
+ addresses, without explicit permission
29
+ * Other unethical or unprofessional conduct
30
+
31
+ Project maintainers have the right and responsibility to remove, edit, or
32
+ reject comments, commits, code, wiki edits, issues, and other contributions
33
+ that are not aligned to this Code of Conduct, or to ban temporarily or
34
+ permanently any contributor for other behaviors that they deem inappropriate,
35
+ threatening, offensive, or harmful.
36
+
37
+ By adopting this Code of Conduct, project maintainers commit themselves to
38
+ fairly and consistently applying these principles to every aspect of managing
39
+ this project. Project maintainers who do not follow or enforce the Code of
40
+ Conduct may be permanently removed from the project team.
41
+
42
+ This Code of Conduct applies both within project spaces and in public spaces
43
+ when an individual is representing the project or its community.
44
+
45
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
46
+ reported by contacting a project maintainer at [INSERT EMAIL ADDRESS]. All
47
+ complaints will be reviewed and investigated and will result in a response that
48
+ is deemed necessary and appropriate to the circumstances. Maintainers are
49
+ obligated to maintain confidentiality with regard to the reporter of an
50
+ incident.
51
+
52
+
53
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
54
+ version 1.3.0, available at
55
+ [http://contributor-covenant.org/version/1/3/0/][version]
56
+
57
+ [homepage]: http://contributor-covenant.org
58
+ [version]: http://contributor-covenant.org/version/1/3/0/
package/CONTRIBUTING.md CHANGED
@@ -121,12 +121,9 @@ git checkout -b <topic-branch-name>
121
121
 
122
122
  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.
123
123
 
124
- 5. Run you code to make sure it works.
124
+ 5. Run you code to make sure it works. If you're still having problems please try to run `make clean` and then test your code again.
125
125
 
126
126
  ```bash
127
- npm i
128
- rm chai.js
129
- make chai.js
130
127
  npm test
131
128
  # when finished running tests...
132
129
  git checkout chai.js
package/README.md CHANGED
@@ -10,6 +10,8 @@
10
10
 
11
11
  [![Selenium Test Status](https://saucelabs.com/browser-matrix/chaijs.svg)](https://saucelabs.com/u/chaijs)
12
12
 
13
+ [![Slack Status](https://chai-slack.herokuapp.com/badge.svg)]( https://chai-slack.herokuapp.com/)
14
+ [![Join the chat at https://gitter.im/chaijs/chai](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/chaijs/chai)
13
15
 
14
16
  Chai is a BDD / TDD assertion library for [node](http://nodejs.org) and the browser that
15
17
  can be delightfully paired with any javascript testing framework.