Jester
No description provided
Details
Installs
- Total 118
- Win 31
- Mac 70
- Linux 17
Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Jester
A Jest test runner
Installation
Package Control
Tools
>Command Palette
, then selectPackage Control: Install Package
- Type
Jester
Commands
Tools
> Command Palette
, and select following commands:
Jester: Test Suite
Run the whole test suite by current actived file.Jester: Test File
Run all tests by current actived file.Jester: Test Block
Run the test block by the cursor location.Jester: Test Last
Run the last test.
Key Bindings
Tools
> Command Palette
, then select Preferences: Jester Key Bindings
.
Add your preferred key bindings.
[
{ "keys": ["ctrl+shift+s"], "command": "jester_test_suite" },
{ "keys": ["ctrl+shift+f"], "command": "jester_test_file" },
{ "keys": ["ctrl+shift+b"], "command": "jester_test_block" },
{ "keys": ["ctrl+shift+l"], "command": "jester_test_last" }
]
Configuration
Tools
> Command Palette
, then select Preferences: Jester Settings
.
// Show debug information
"debug": false,
// The jest execution is used when running tests. The default is looking for
// the jest execution found on the node_modelus/.bin in the working directories.
// "jest_execution": "/usr/local/bin/jest",
// "jest_execution": "%USERPROFILE%\AppData\Roaming\npm\jest.cmd",
// Jest CLI Options.
// https://jestjs.io/docs/cli
// e.g. `{"json": true, "outputFile": "filename.out"}`
"jest_options": {}
Credits
Based initially on, and inspired by, gerardroche/sublime-phpunit.