ng-alain
Version:
Schematics specific to NG-ALAIN
30 lines (23 loc) • 1.15 kB
text/typescript
import { SchematicTestRunner, UnitTestTree } from '@angular-devkit/schematics/testing';
import { createAlainApp } from '../utils/testing';
const PATH = '/projects/foo/src/app/app.config.ts';
describe('NgAlainSchematic: plugin: default-language', () => {
let runner: SchematicTestRunner;
let tree: UnitTestTree;
beforeEach(async () => ({ runner, tree } = await createAlainApp({ defaultLanguage: 'en' })));
it(`should working`, () => {
const content = tree.readContent(PATH);
expect(content).toContain(`@angular/common/locales/en`);
expect(content).toContain(`en_US as zorroLang`);
expect(content).toContain(`enUS as dateLang`);
expect(content).toContain(`en_US as delonLang`);
});
it('should be from en to zh', async () => {
await runner.runSchematic('plugin', { name: 'defaultLanguage', type: 'add', defaultLanguage: 'zh' }, tree);
const content = tree.readContent(PATH);
expect(content).toContain(`@angular/common/locales/zh`);
expect(content).toContain(`zh_CN as zorroLang`);
expect(content).toContain(`zhCN as dateLang`);
expect(content).toContain(`zh_CN as delonLang`);
});
});