mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* test(e2e): modal-navigation app webpack support * test(e2e): add modal-navigation app smoke test * chore(e2e): tslint disable next line * chore(e2e): modal-navigation app compilation * refactor(e2e): modal-nabivation app pages * test(e2e): add app root modal frame tests * test(e2e): add app root modal frame background tests * refactor(e2e): app root modal frame tests * test(e2e): add tab root modal frame tests * refactor(e2e): modal frame tests * test(e2e): add modal page tests * docs(e2e): add scenarios * refactor(e2e): modal-navigation app tests * test(e2e): turn on/off "Don't keep activities" * test(e2e): delete no background tests * test(e2e): add modal tab tests * refactor(e2e): quit driver after all tests * refactor(e2e): config files * fix(e2e): tab root tests * refactor(e2e): skip tab root tests until fix app * chore(e2e): config files
10 lines
406 B
TypeScript
10 lines
406 B
TypeScript
require("application");
|
|
if (!global["__snapshot"]) {
|
|
// In case snapshot generation is enabled these modules will get into the bundle
|
|
// but will not be required/evaluated.
|
|
// The snapshot webpack plugin will add them to the tns-java-classes.js bundle file.
|
|
// This way, they will be evaluated on app start as early as possible.
|
|
require("ui/frame");
|
|
require("ui/frame/activity");
|
|
}
|