KawAnime/test/index.spec.js

18 lines
509 B
JavaScript
Raw Normal View History

2019-07-03 15:54:29 +00:00
/**
* 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.
*/
describe('KawAnime main test routine', function () {
require('./hooks')()
require('./container')
require('./app')
})