@@ -40,7 +40,7 @@ test('Lineage panel renders correctly - relative project path', async ({
4040 await fs.copy(SUSHI_SOURCE_PATH, projectDir)
4141
4242 const settings = {
43- 'sqlmesh.projectPath ': './projects/sushi',
43+ 'sqlmesh.projectPaths ': [ './projects/sushi'] ,
4444 'python.defaultInterpreterPath': sharedCodeServer.defaultPythonInterpreter,
4545 }
4646 await fs.ensureDir(path.join(tempDir, '.vscode'))
@@ -67,7 +67,7 @@ test('Lineage panel renders correctly - absolute project path', async ({
6767 await fs.copy(SUSHI_SOURCE_PATH, projectDir)
6868
6969 const settings = {
70- 'sqlmesh.projectPath ': projectDir,
70+ 'sqlmesh.projectPaths ': [ projectDir] ,
7171 'python.defaultInterpreterPath': sharedCodeServer.defaultPythonInterpreter,
7272 }
7373 await fs.writeJson(path.join(tempDir, '.vscode', 'settings.json'), settings, {
@@ -90,7 +90,7 @@ test('Lineage panel renders correctly - relative project outside of workspace',
9090 await fs.ensureDir(workspaceDir)
9191
9292 const settings = {
93- 'sqlmesh.projectPath ': './../projects/sushi',
93+ 'sqlmesh.projectPaths ': [ './../projects/sushi'] ,
9494 'python.defaultInterpreterPath': sharedCodeServer.defaultPythonInterpreter,
9595 }
9696 await fs.ensureDir(path.join(workspaceDir, '.vscode'))
@@ -115,7 +115,7 @@ test('Lineage panel renders correctly - absolute path project outside of workspa
115115 await fs.ensureDir(workspaceDir)
116116
117117 const settings = {
118- 'sqlmesh.projectPath ': projectDir,
118+ 'sqlmesh.projectPaths ': [ projectDir] ,
119119 'python.defaultInterpreterPath': sharedCodeServer.defaultPythonInterpreter,
120120 }
121121 await fs.ensureDir(path.join(workspaceDir, '.vscode'))
0 commit comments