我的代码在这里,
// app.component.ts
public TestFairy: TestFairy;
platform.ready().then(() => {
TestFairy.begin(APP TOKEN);
...
});
通过TestDairy的错误
答案 0 :(得分:2)
试试这个
// 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);
...
});
答案 1 :(得分:0)
See the TestFairy documentation for ionic.
还建议添加此插件以启用ios 10.x上的日志:
离子插件添加cordova-plugin-console
谢谢, 尤瓦。