You've already forked solo-desktop
mirror of
https://github.com/solokeys/solo-desktop.git
synced 2026-06-20 13:16:11 -07:00
13 lines
178 B
JavaScript
13 lines
178 B
JavaScript
var routes = require('./../main/routes');
|
|
|
|
async function runTests(){
|
|
await routes.init();
|
|
|
|
await routes.register();
|
|
}
|
|
|
|
if (require.main === module) {
|
|
|
|
runTests();
|
|
|
|
} |