Alias would remove unnecessary repetitions and less relative paths make changes easier when moving around files. This commit cleans also up some relative paths ('../../../') by using the alias and orders imports. It updates both path alias in tsconfig and module alias in Vue CLI's bundler (vuejs/vue-cli#2398).
15 lines
775 B
TypeScript
15 lines
775 B
TypeScript
import 'mocha';
|
|
import { SyntaxFactory } from '@/application/Parser/Script/Syntax/SyntaxFactory';
|
|
import { ScriptingLanguage } from '@/domain/ScriptingLanguage';
|
|
import { ShellScriptSyntax } from '@/application/Parser/Script/Syntax/ShellScriptSyntax';
|
|
import { BatchFileSyntax } from '@/application/Parser/Script/Syntax/BatchFileSyntax';
|
|
import { ScriptingLanguageFactoryTestRunner } from '@tests/unit/application/Common/ScriptingLanguage/ScriptingLanguageFactoryTestRunner';
|
|
|
|
describe('SyntaxFactory', () => {
|
|
const sut = new SyntaxFactory();
|
|
const runner = new ScriptingLanguageFactoryTestRunner()
|
|
.expect(ScriptingLanguage.shellscript, ShellScriptSyntax)
|
|
.expect(ScriptingLanguage.batchfile, BatchFileSyntax);
|
|
runner.testCreateMethod(sut);
|
|
});
|