Jester
No description provided
Details
Installs
- Total 127
- Win 33
- Mac 76
- Linux 18
Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 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 | 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 | 1 | 0 | 1 | 0 | 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 |
Linux | 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 |
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.