fix(n1-spec-runner): Make fit async too

Summary: Running async tests with `fit` can fail otherwise

Test Plan: unit tests

Reviewers: juan, evan

Reviewed By: juan, evan

Differential Revision: https://phab.nylas.com/D3874
This commit is contained in:
Halla Moore 2017-02-09 16:16:42 -08:00
parent 0e5aebb91d
commit f86ff97062

View file

@ -38,6 +38,7 @@ class N1SpecRunner {
it: this._makeItAsync(jasmineExports.it),
// it: jasmineExports.it,
fit: this._makeItAsync(jasmineExports.fit),
xit: jasmineExports.xit,
runs: jasmineExports.runs,
waits: jasmineExports.waits,