-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into remove-jekyll
* master: test(integration/reporters.spec.js): Add test for TAP when given invalid reporter option Fix couple errors missing codes (#3666) fix tests & formatting on windows; closes #3643 Set "root" property on Suite correctly (#3632) remove invalid comment; see #1962 fix WallabyJS config [ci skip] mega-upgrade of .gitignore [ci skip] Update documentation concerning fs.readdir (#3657) Add test for Runner event order (#3642) # Conflicts: # .gitignore # .wallaby.js
- Loading branch information
Showing
16 changed files
with
830 additions
and
371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,143 @@ | ||
.DS_Store | ||
node_modules | ||
*.sock | ||
*.sw* | ||
.idea | ||
*.iml | ||
*.patch | ||
*.diff | ||
npm-debug.log* | ||
.envrc | ||
# Mocha-specific | ||
docs/_site | ||
docs/_dist | ||
mocha.js | ||
.karma/ | ||
!lib/mocha.js | ||
|
||
######################################### | ||
# NON-MOCHA STUFF GOES BELOW THIS THING # | ||
######################################### | ||
|
||
# Git mergetool | ||
# Use `git config mergetool.keepBackup false` to stop generating these files | ||
*.orig | ||
.nyc_output/ | ||
coverage/ | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# nyc/istanbul | ||
coverage | ||
.nyc_output | ||
|
||
# Dependencies | ||
node_modules/ | ||
|
||
# npm | ||
.npm | ||
*.tgz | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# dotenv environment variables file | ||
.env | ||
.env.test | ||
|
||
# Yarn | ||
yarn.lock | ||
/mocha.js | ||
# artifacts from various diff tools | ||
.yarn-integrity | ||
|
||
# Various temporary files | ||
*~ | ||
|
||
# Emacs | ||
\#*\# | ||
/.emacs.desktop | ||
/.emacs.desktop.lock | ||
*.elc | ||
auto-save-list | ||
tramp | ||
.\#* | ||
|
||
# Vim | ||
[._]*.s[a-v][a-z] | ||
[._]*.sw[a-p] | ||
[._]s[a-rt-v][a-z] | ||
[._]ss[a-gi-z] | ||
[._]sw[a-p] | ||
Session.vim | ||
[._]*.un~ | ||
|
||
# Diff | ||
*.patch | ||
*.diff | ||
|
||
# VSCode | ||
.vscode/ | ||
|
||
# JetBrains' IDEs | ||
.idea/ | ||
*.iws | ||
out/ | ||
.idea_modules/ | ||
atlassian-ide-plugin.xml | ||
|
||
# SourceTree | ||
*_BACKUP_* | ||
*_BASE_* | ||
*_LOCAL_* | ||
*_REMOTE_* | ||
docs/_site | ||
docs/_dist | ||
out/ | ||
.vscode/ | ||
|
||
# SublimeText | ||
*.tmlanguage.cache | ||
*.tmPreferences.cache | ||
*.stTheme.cache | ||
*.sublime-workspace | ||
*.sublime-project | ||
sftp-config.json | ||
Package Control.last-run | ||
Package Control.ca-list | ||
Package Control.ca-bundle | ||
Package Control.system-ca-bundle | ||
Package Control.cache/ | ||
Package Control.ca-certs/ | ||
Package Control.merged-ca-bundle | ||
Package Control.user-ca-bundle | ||
oscrypto-ca-bundle.crt | ||
bh_unicode_properties.cache | ||
GitHub.sublime-settings | ||
|
||
# direnv | ||
.envrc | ||
|
||
# Linux | ||
.fuse_hidden* | ||
.directory | ||
.Trash-* | ||
.nfs* | ||
|
||
# Windows | ||
Thumbs.db | ||
ehthumbs.db | ||
ehthumbs_vista.db | ||
*.stackdump | ||
[Dd]esktop.ini | ||
$RECYCLE.BIN/ | ||
*.cab | ||
*.msi | ||
*.msix | ||
*.msm | ||
*.msp | ||
*.lnk | ||
|
||
# macOS | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
._* | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
# SauceConnect | ||
*.sock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.