mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
mark a couple data workspace tests as unstable (#13822)
This commit is contained in:
@@ -38,7 +38,7 @@ suite('New Project Dialog', function (): void {
|
|||||||
should.equal(await dialog.validate(), true, 'Validation should pass because name is unique and parent directory exists');
|
should.equal(await dialog.validate(), true, 'Validation should pass because name is unique and parent directory exists');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('Should validate new workspace location', async function (): Promise<void> {
|
test('Should validate new workspace location @UNSTABLE@', async function (): Promise<void> {
|
||||||
const workspaceServiceMock = TypeMoq.Mock.ofType<WorkspaceService>();
|
const workspaceServiceMock = TypeMoq.Mock.ofType<WorkspaceService>();
|
||||||
workspaceServiceMock.setup(x => x.getAllProjectTypes()).returns(() => Promise.resolve([testProjectType]));
|
workspaceServiceMock.setup(x => x.getAllProjectTypes()).returns(() => Promise.resolve([testProjectType]));
|
||||||
|
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ suite('Open Existing Dialog', function (): void {
|
|||||||
should.equal(await dialog.validate(), true, 'Validation pass because workspace file exists');
|
should.equal(await dialog.validate(), true, 'Validation pass because workspace file exists');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('Should validate new workspace location', async function (): Promise<void> {
|
test('Should validate new workspace location @UNSTABLE@', async function (): Promise<void> {
|
||||||
const workspaceServiceMock = TypeMoq.Mock.ofType<WorkspaceService>();
|
const workspaceServiceMock = TypeMoq.Mock.ofType<WorkspaceService>();
|
||||||
workspaceServiceMock.setup(x => x.getAllProjectTypes()).returns(() => Promise.resolve([testProjectType]));
|
workspaceServiceMock.setup(x => x.getAllProjectTypes()).returns(() => Promise.resolve([testProjectType]));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user