Skip to content

Commit

Permalink
Merge pull request #326 from alisonatwork/fix-1.75-flakiness
Browse files Browse the repository at this point in the history
Fix 1.75 flakiness
  • Loading branch information
alisonatwork authored Feb 28, 2024
2 parents d322999 + ac0da9e commit 4d2b145
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .vscode-test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineConfig } from '@vscode/test-cli';

export default defineConfig({
files: 'out/test/**/*.test.js',
version: '1.74.0',
version: '1.75.0',
mocha: {
ui: 'tdd',
timeout: 2500,
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"author": "aioutecism",
"license": "ISC",
"engines": {
"vscode": "^1.74.0"
"vscode": "^1.75.0"
},
"main": "./dist/extension.js",
"extensionKind": [
Expand Down Expand Up @@ -266,7 +266,7 @@
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^18.x",
"@types/vscode": "^1.74.0",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
Expand Down
2 changes: 1 addition & 1 deletion src/Dispatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class Dispatcher {
await ActionMode.switchByActiveSelections(this._currentMode.id);
ActionMoveCursor.updatePreferredColumn();
this._currentMode.onDidChangeTextEditorSelection();
}, 0);
}, 2);
}),
window.onDidChangeActiveTextEditor(async () => {
if (Configuration.defaultModeID === ModeID.INSERT) {
Expand Down

0 comments on commit 4d2b145

Please sign in to comment.