https://github.com/wincent/jost
🤡 Just Jost (not Jest)
https://github.com/wincent/jost
javascript nodejs testing
Last synced: 3 months ago
JSON representation
🤡 Just Jost (not Jest)
- Host: GitHub
- URL: https://github.com/wincent/jost
- Owner: wincent
- License: mit
- Created: 2019-01-18T20:26:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-01-24T10:07:06.000Z (over 1 year ago)
- Last Synced: 2025-10-09T00:39:33.688Z (8 months ago)
- Topics: javascript, nodejs, testing
- Language: JavaScript
- Homepage:
- Size: 60.5 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Jost — Just Jost (not Jest)
[](http://badge.fury.io/js/jost)
### `my-tests.js`
```javascript
#!/usr/bin/env node
import {beforeEach, afterEach, context, describe, expect, it} from 'jost';
describe('Jost', () => {
it('expects', () => {
expect(true).toBe(true);
});
});
// etc...
```
### Output of `./my-tests.js`
```
Jost
expects
0 errors, 1 example, 0 failures, 1 suite
```