Skip to content

Commit e94ea3f

Browse files
committed
fix: tests failing as changed tab open handler from mousedown to click
1 parent 6e13d77 commit e94ea3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/spec/Extn-Tabbar-integ-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ define(function (require, exports, module) {
11931193
async function clickTabAndVerify(filePath, description) {
11941194
const $tab = getTab(filePath);
11951195
expect($tab.length).toBe(1);
1196-
$tab.trigger("mousedown");
1196+
$tab.trigger("click");
11971197

11981198
// Wait for the file to become active
11991199
await awaitsFor(

0 commit comments

Comments
 (0)