Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/localvoid/karma-mocha-hooks
Karma plugin that exposes hooks from mocha framework
https://github.com/localvoid/karma-mocha-hooks
karma mocha
Last synced: about 1 month ago
JSON representation
Karma plugin that exposes hooks from mocha framework
- Host: GitHub
- URL: https://github.com/localvoid/karma-mocha-hooks
- Owner: localvoid
- License: mit
- Created: 2017-07-18T13:43:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-18T13:43:40.000Z (over 7 years ago)
- Last Synced: 2024-11-17T20:05:22.520Z (about 2 months ago)
- Topics: karma, mocha
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Karma plugin that exposes hooks from mocha framework
```ts
interface TestHooks {
before: () => void;
after: () => void;
}declare global {
interface Window {
__test_hooks__?: TestHooks;
}
}
```