Skip to content

Commit bd924d6

Browse files
authored
E2E test: missing await causing flake with R XLSX (#9217)
Just a missing await ### QA Notes
1 parent de66a3f commit bd924d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/tests/data-explorer/xlsx-data-frame.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ test.describe('Data Explorer - XLSX', {
4444
await openFile(join('workspaces', 'read-xlsx-r', 'supermarket-sales.r'));
4545
await runCommand('r.sourceCurrentFile');
4646

47-
metric.dataExplorer.loadData(async () => {
47+
await metric.dataExplorer.loadData(async () => {
4848
await variables.doubleClickVariableRow('df2');
4949
await editors.verifyTab('Data: df2', { isVisible: true });
5050
await dataExplorer.waitForIdle();

0 commit comments

Comments
 (0)