We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e15779a commit 2d1bd21Copy full SHA for 2d1bd21
1 file changed
vscode/extension/tests/utils.ts
@@ -148,3 +148,14 @@ export const openLineageView = async (window: Page): Promise<void> => {
148
await window.keyboard.type('Lineage: Focus On View')
149
await window.keyboard.press('Enter')
150
}
151
+
152
+/**
153
+ * Restart the SQLMesh servers
154
+ */
155
+export const restartSqlmeshServers = async (window: Page): Promise<void> => {
156
+ await window.keyboard.press(
157
+ process.platform === 'darwin' ? 'Meta+Shift+P' : 'Control+Shift+P',
158
+ )
159
+ await window.keyboard.type('Restart SQLMesh servers')
160
+ await window.keyboard.press('Enter')
161
+}
0 commit comments