Ionic Framework SQLite testing with browser

I followed https://blog.nraboy.com/2015/01/deploy-ionic-framework-app-pre-filled-sqlite-db/ that tutorial. And I wish to test on web browser. How can I test SQLite plugin and dbCopy with ionic serve on web browser?

I found this.

if(window.cordova) {
      // App syntax
      db = $cordovaSQLite.openDB("myapp.db");
    } else {
      // Ionic serve syntax
      db = window.openDatabase("myapp.db", "1.0", "My app", -1);
    }

But it is just for OpenDB but not for copyDB.

My developing environment is just Netbook.

So It has no KVM and it is difficult to install android studio. So I wish to test on web browser.