Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump glob to 10.3.4 #940

Merged
merged 1 commit into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 20 additions & 90 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
"homepage": "https://github.com/redhat-developer/vscode-extension-tester#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.15",
Expand All @@ -59,7 +58,7 @@
"commander": "^11.0.0",
"compare-versions": "^6.1.0",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"glob": "^10.3.4",
"got": "^13.0.0",
"hpagent": "^1.2.0",
"js-yaml": "^4.1.0",
Expand Down
1 change: 1 addition & 0 deletions page-objects/src/components/bottomBar/BottomBarPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export class BottomBarPanel extends AbstractElement {
const height = (await this.getRect()).height;
if ((open && height === 0) || !open && height > 0) {
if (open) {
await this.getDriver().actions().clear();
await this.getDriver().actions().keyDown(BottomBarPanel.ctlKey).sendKeys('j').perform();
await this.wait();
} else {
Expand Down
4 changes: 2 additions & 2 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ program.command('run-tests <testFiles...>')
.option('-m, --mocha_config <mocharc.js>', 'Path to Mocha configuration file')
.option('-l, --log_level <level>', 'Log messages from webdriver with a given level', 'Info')
.option('-f, --offline', 'Attempt to run without internet connection, make sure to have all requirements downloaded', false)
.option('-r --open_resource <resources...>', 'Open resources in VS Code. Multiple files and folders can be specified.')
.option('-r, --open_resource <resources...>', 'Open resources in VS Code. Multiple files and folders can be specified.')
.action(withErrors(async (testFiles, cmd) => {
const extest = new ExTester(cmd.storage, codeStream(cmd.type), cmd.extensions_dir);
await extest.runTests(testFiles, {vscodeVersion: cmd.code_version, settings: cmd.code_settings, cleanup: cmd.uninstall_extension, config: cmd.mocha_config, logLevel: cmd.log_level, offline: cmd.offline, resources: cmd.open_resource ?? []});
Expand All @@ -98,7 +98,7 @@ program.command('setup-and-run <testFiles...>')
.option('-i, --install_dependencies', 'Automatically install extensions your extension depends on', false)
.option('-l, --log_level <level>', 'Log messages from webdriver with a given level', 'Info')
.option('-f, --offline', 'Attempt to run without internet connection, make sure to have all requirements downloaded', false)
.option('-r --open_resource <resources...>', 'Open resources in VS Code. Multiple files and folders can be specified.')
.option('-r, --open_resource <resources...>', 'Open resources in VS Code. Multiple files and folders can be specified.')
.action(withErrors(async (testFiles, cmd) => {
const extest = new ExTester(cmd.storage, codeStream(cmd.type), cmd.extensions_dir);
await extest.setupAndRunTests(testFiles, cmd.code_version, {useYarn: cmd.yarn, installDependencies: cmd.install_dependencies}, {settings: cmd.code_settings, cleanup: cmd.uninstall_extension, config: cmd.mocha_config, logLevel: cmd.log_level, resources: cmd.open_resource ?? []});
Expand Down
Loading