- Fix missing semicolons
- Fix missing trailing commas
- Disable no-unused-expression for runQuery test
- expect uses unused expressions as an api Ex. expect('foo').to.be.equal();
- Disable no-use-before-declare since it requires type checking and project
file to be defined.
* Execute queries in Fibers to support yielding APIs.
See also: https://github.com/meteor/promise/blob/master/promise.d.ts
* Improve comment about Promise.await.
* Don't make Promises aware of Fibers except in tests.
The Promise used by Meteor will already be Fiber-enabled, so calling
makeCompatible in the tests is just simulating running in a Meteor
environment.