mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
Update import project to have friendly names for the extract file organization options (#11123)
* udpate import to have friendly names for the extract file organization options * update tests * update message * remove camelcase stuff * use localized constants instead of enum
This commit is contained in:
@@ -6,15 +6,7 @@
|
||||
import * as should from 'should';
|
||||
import * as path from 'path';
|
||||
import {createDummyFileStructure} from './testUtils';
|
||||
import {toPascalCase, exists} from '../common/utils';
|
||||
|
||||
describe('Tests for conversion within PascalCase and camelCase', function (): void {
|
||||
it('Should generate PascalCase from camelCase correctly', async () => {
|
||||
should(toPascalCase('')).equal('');
|
||||
should(toPascalCase('camelCase')).equal('CamelCase');
|
||||
should(toPascalCase('camel.case')).equal('Camel.case');
|
||||
});
|
||||
});
|
||||
import { exists} from '../common/utils';
|
||||
|
||||
describe('Tests to verify exists function', function (): void {
|
||||
it('Should determine existence of files/folders', async () => {
|
||||
|
||||
Reference in New Issue
Block a user