Skip to content

Commit 92a912c

Browse files
authored
Merge pull request #52 from kensodemann/fix/mocksIonic
fix(mocks): update return signature for ready() Thanks for your support
2 parents c40827d + 180e4cf commit 92a912c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-config/mocks-ionic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { StatusBar } from '@ionic-native/status-bar';
22
import { SplashScreen } from '@ionic-native/splash-screen';
33

44
export class PlatformMock {
5-
public ready(): Promise<{String}> {
5+
public ready(): Promise<string> {
66
return new Promise((resolve) => {
77
resolve('READY');
88
});

0 commit comments

Comments
 (0)