Skip to content

Commit

Permalink
build(deps-dev): bump glob from 8.0.3 to 10.3.10 (#374)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump glob from 8.0.3 to 10.3.10

Bumps [glob](https://github.com/isaacs/node-glob) from 8.0.3 to 10.3.10.
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v8.0.3...v10.3.10)

---
updated-dependencies:
- dependency-name: glob
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* test: open intial file

* test: add missing import

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Robbert Verbruggen <[email protected]>
Co-authored-by: Robbert Verbruggen <[email protected]>
  • Loading branch information
3 people authored Dec 4, 2023
1 parent 4435fbb commit 2717ff7
Show file tree
Hide file tree
Showing 3 changed files with 264 additions and 15 deletions.
272 changes: 258 additions & 14 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"@vscode/test-electron": "^2.3.6",
"@vscode/vsce": "^2.22.0",
"eslint": "^8.47.0",
"glob": "^8.0.3",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"typescript": "^5.2.2"
Expand Down
5 changes: 5 additions & 0 deletions test/suite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import * as path from 'path';
import * as Mocha from 'mocha';
import * as glob from 'glob';
import { join } from "path";
import * as helper from "../helper";


function setupCoverage()
Expand Down Expand Up @@ -47,6 +48,10 @@ export async function run(): Promise<void>
{
await new Promise((resolve, reject) =>
{
// Open an empty file to already start vscode before the actual tests start.
// This prevents timing issues in the first test.
helper.openFile(``, "markdown");

// Run the mocha test
mocha.run(failures =>
{
Expand Down

0 comments on commit 2717ff7

Please sign in to comment.