Update meteor.d.ts (#9323)

Missing property Meteor.isTest added, this flag is missing from the official docs as well but referenced in the [guide](http://guide.meteor.com/v1.3/testing.html#test-modes)
This commit is contained in:
Tristan Geraets 2016-05-14 19:48:53 +02:00 committed by Masahiro Wakame
parent bb5d8ea26c
commit 6d46dce92e

1
meteor/meteor.d.ts vendored
View File

@ -582,6 +582,7 @@ declare namespace Meteor {
var isDevelopment: boolean;
var isProduction: boolean;
var isServer: boolean;
var isTest: boolean;
function loggingIn(): boolean;
function loginWith<ExternalService>(options?: {
requestPermissions?: string[];