Hiroyuki Usui
Hiroyuki Usui
恐らくこのプラグインは[`0.12.x`系](https://github.com/jp9000/obs-studio/releases?after=0.12.3)以上で動作しません。 > OBS MultiPlatofrm 対応バージョン: 0.11.x 以上 バージョンを下げて試してみてください
I've used a `Mousetrap` new instance as a namespace. ``` js var mousetrap1= new Mousetrap mousetrap1.bind('a', callback1) var mousetrap2= new Mousetrap mousetrap2.bind('a', callback2) ``` ``` js mousetrap2.reset()// then available the...
こんな感じでしょうか?もっと上手く書けそうですが… [JavaScript - 半角カナ←→全角カナ - Qiita](http://qiita.com/59naga/items/50682b6c096b02e9443e)
あ、ダメだ。fixture更新しないと通らないっぽいですね…
Got the answer of ibrik: ``` bash $ ibrik cover _mocha -- test/*.coffee ``` Demo: https://travis-ci.org/59naga/jasminetea/builds/65687751 Note: [test/**" isn't calculated](https://github.com/Constellation/ibrik/blob/master/src/cover.coffee#L55). Can use `--default-excludes` option if want include files at `test/**`
Before: ``` bash $ npm test > ibrik cover _mocha -- test/**/*.spec.coffee # ... # The command "npm test" exited with 0. ``` > https://travis-ci.org/59naga/jasminetea/builds/65717291#L189 After: ``` bash $ npm...