Skip to content

Commit

Permalink
Bump glob to 10.3.4
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Jelinek <[email protected]>
  • Loading branch information
djelinek committed Sep 13, 2023
1 parent 2c087f4 commit dd6043d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 99 deletions.
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
2 changes: 1 addition & 1 deletion test/test-project/src/test/xsideBar/scmView-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as fs from 'fs-extra';
(VSBrowser.instance.version >= '1.38.0' ? describe : describe.skip)('SCM View', () => {
let view: ScmView;

before(async function context() {
before(async function () {
this.timeout(15000);
fs.writeFileSync(path.resolve('.', 'testfile'), 'content');
await VSBrowser.instance.openResources(path.resolve('..', '..'));
Expand Down
6 changes: 0 additions & 6 deletions test/test-project/src/test/xsideBar/sideBarView-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,6 @@ describe('SideBarView', () => {
content = view.getContent();
});

after(async function() {
this.timeout(15000);
await new Workbench().executeCommand('close test folder');
await new Promise((res) => { setTimeout(res, 3000); });
});

it('getSections works', async () => {
const sections = await content.getSections();
expect(sections).not.empty;
Expand Down

0 comments on commit dd6043d

Please sign in to comment.