mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-31 09:10:30 -04:00
Make mssql extension a module (#18804)
* Rebase from main branch * import from module * Add mssql module ref Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
This commit is contained in:
committed by
GitHub
parent
ae8784e462
commit
5e68ff1dfe
@@ -4,8 +4,8 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import * as should from 'should';
|
||||
import * as mssql from '../../../../mssql/src/mssql';
|
||||
import {SchemaCompareOptionsModel} from '../../models/schemaCompareOptionsModel';
|
||||
import * as mssql from 'mssql';
|
||||
import { SchemaCompareOptionsModel } from '../../models/schemaCompareOptionsModel';
|
||||
|
||||
describe('Schema Compare Options Model', () => {
|
||||
it('Should create model and set options successfully', function (): void {
|
||||
@@ -39,7 +39,7 @@ describe('Schema Compare Options Model', () => {
|
||||
});
|
||||
});
|
||||
|
||||
const defaultOptions: mssql.DeploymentOptions = {
|
||||
const defaultOptions: mssql.DeploymentOptions = {
|
||||
ignoreTableOptions: false,
|
||||
ignoreSemicolonBetweenStatements: false,
|
||||
ignoreRouteLifetime: false,
|
||||
|
||||
Reference in New Issue
Block a user