Skip to content

Commit

Permalink
feat(sqlite): add selfTest function
Browse files Browse the repository at this point in the history
fix: #963
  • Loading branch information
danielsogl authored Mar 16, 2018
1 parent 9cc3d8f commit 241f073
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/@ionic-native/plugins/sqlite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,13 @@ export class SQLite extends IonicNativePlugin {
*/
@Cordova()
echoTest(): Promise<any> { return; }

/**
* Automatically verify basic database access operations including opening a database
* @returns {Promise<any>}
*/
@Cordova()
selfTest(): Promise<any> { return; }

/**
* Deletes a database
Expand Down

0 comments on commit 241f073

Please sign in to comment.