mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
fcfcafaac0
WIP: - Added new global scripts folder `global_shared` where global hooks, names and steps will be stored. - Created new `suite_onboarding` and moved existing test case related to it as a poc. - Updated all `test.py` files to use global files and fit the new structure.
9 lines
312 B
Python
9 lines
312 B
Python
source(findFile('scripts', 'python/bdd.py'))
|
|
|
|
setupHooks('../../global_shared/scripts/bdd_hooks.py')
|
|
collectStepDefinitions('./steps', '../shared/steps/', '../../global_shared/steps/', '../../suite_onboarding/shared/steps/')
|
|
|
|
def main():
|
|
testSettings.throwOnFailure = True
|
|
runFeatureFile('test.feature')
|