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:
Riken Shah
2021-04-01 18:07:19 +05:30
committed by Tim Abbott
parent e05935a292
commit f6998d6fee
21 changed files with 8 additions and 8 deletions

View File

@@ -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)