mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 01:25:36 -05:00
Make publish to docker settings properties required (#19898)
* Make publish to docker settings properties required * move
This commit is contained in:
@@ -72,6 +72,11 @@ describe('deploy service', function (): void {
|
||||
it('Should deploy a database to docker container successfully', async function (): Promise<void> {
|
||||
const testContext = createContext();
|
||||
const deployProfile: IPublishToDockerSettings = {
|
||||
sqlProjectPublishSettings: {
|
||||
databaseName: 'dbName',
|
||||
serverName: 'serverName',
|
||||
connectionUri: 'connectionUri'
|
||||
},
|
||||
dockerSettings: {
|
||||
dbName: 'test',
|
||||
password: 'PLACEHOLDER',
|
||||
@@ -102,6 +107,11 @@ describe('deploy service', function (): void {
|
||||
it('Should fail the deploy if docker is not running', async function (): Promise<void> {
|
||||
const testContext = createContext();
|
||||
const deployProfile: IPublishToDockerSettings = {
|
||||
sqlProjectPublishSettings: {
|
||||
databaseName: 'dbName',
|
||||
serverName: 'serverName',
|
||||
connectionUri: 'connectionUri'
|
||||
},
|
||||
dockerSettings: {
|
||||
dbName: 'test',
|
||||
password: 'PLACEHOLDER',
|
||||
|
||||
Reference in New Issue
Block a user