mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
puppeteer_tests: Remove sequential numbers from test files.
The only downside of this is that it makes it harder to control the order of these tests; which isn't that important. And the structure of naming each with its test order fundamentally requires renaming files when adding/deleting tests, so if we want to control the default test order, we'd be better off doing that by just hardcoding a list in the test runner code.
This commit is contained in:
@@ -28,10 +28,10 @@ os.environ.pop("https_proxy", "")
|
||||
|
||||
usage = """test-js-with-puppeteer [options]
|
||||
test-js-with-puppeteer # Run all test files
|
||||
test-js-with-puppeteer 09-navigation.js # Run a single test file
|
||||
test-js-with-puppeteer 09 # Run a single test file 09-navigation.js
|
||||
test-js-with-puppeteer 01-login.js 03-narrow.js # Run a few test files
|
||||
test-js-with-puppeteer 01 03 # Run a few test files, 01-login.js and 03-narrow.js here"""
|
||||
test-js-with-puppeteer navigation.ts # Run a single test file
|
||||
test-js-with-puppeteer navi # Run a single test file navigation.ts
|
||||
test-js-with-puppeteer login.ts compose.ts # Run a few test files
|
||||
test-js-with-puppeteer login compose # Run a few test files, login.ts and compose.ts here"""
|
||||
|
||||
sys.path.insert(0, ZULIP_PATH)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user