我的密码在这里
// app.component.ts
public TestFairy: TestFairy;
platform.ready().then(() => {
TestFairy.begin(APP TOKEN);
...
});它通过TestDairy的错误
发布于 2016-12-16 04:55:36
尝尝这个
// app.componenet.ts
/// <reference path="../plugins/com.testfairy.cordova-plugin/www/testfairy.d.ts" />在导入之后,添加以下行来导入TestFairy
declare var TestFairy: TestFairy;构造函数内部
platform.ready().then(() => {
TestFairy.begin(APP TOKEN);
...
});请参考以下链接:https://docs.testfairy.com/Integrations/Cordova.html
发布于 2017-01-17 13:32:09
https://stackoverflow.com/questions/41177385
复制相似问题