mirror of https://github.com/Kylart/KawAnime.git
28 lines
794 B
JavaScript
28 lines
794 B
JavaScript
/**
|
|
* We have to do it that way because we don't want to restart the app
|
|
* several times. Restarting would mean spamming the providers and
|
|
* might get us useless 429.
|
|
*
|
|
* Also, the end user will probably only start the app once.
|
|
*
|
|
* We'll make each app test so that it leaves the app in a neutral state,
|
|
* meaning that any action should be possible once any test is done.
|
|
*
|
|
* Documentation is at:
|
|
* - Spectron: https://github.com/electron-userland/spectron#application-api
|
|
* - Webdriver.io: https://webdriver.io/docs/api/browser/waitUntil.html
|
|
*/
|
|
|
|
describe('KawaBinds main test routine', function () {
|
|
require('./bindings')
|
|
})
|
|
|
|
describe('KawAnime main test routine', function () {
|
|
this.timeout(30000)
|
|
|
|
require('./hooks')()
|
|
|
|
require('./app')
|
|
require('./container')
|
|
})
|