this is just for the repo, and not the workspace Co-authored-by: Rares Matei <matei.rar@gmail.com>
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import {
|
|
ensureProject,
|
|
runCLI,
|
|
uniq,
|
|
updateFile,
|
|
forEachCli,
|
|
supportUi,
|
|
patchKarmaToWorkOnWSL,
|
|
} from './utils';
|
|
|
|
forEachCli('angular', () => {
|
|
describe('Upgrade', () => {
|
|
it('should generate an UpgradeModule setup', async () => {
|
|
ensureProject();
|
|
const myapp = uniq('myapp');
|
|
runCLI(`generate @nrwl/angular:app ${myapp} --unit-test-runner=karma`);
|
|
patchKarmaToWorkOnWSL();
|
|
|
|
updateFile(
|
|
`apps/${myapp}/src/legacy.js`,
|
|
`
|
|
const angular = window.angular.module('legacy', []);
|
|
angular.component('proj-root-legacy', {
|
|
template: 'Expected Value'
|
|
});
|
|
`
|
|
);
|
|
|
|
updateFile(
|
|
`apps/${myapp}/src/app/app.component.html`,
|
|
`
|
|
EXPECTED [<proj-root-legacy></proj-root-legacy>]
|
|
`
|
|
);
|
|
|
|
updateFile(`apps/${myapp}/src/app/app.component.spec.ts`, ``);
|
|
|
|
runCLI(
|
|
'generate @nrwl/angular:upgrade-module legacy --angularJsImport=./legacy ' +
|
|
`--angularJsCmpSelector=proj-root-legacy --project=${myapp}`
|
|
);
|
|
|
|
runCLI(`build ${myapp}`);
|
|
expect(runCLI(`test ${myapp} --no-watch`)).toContain('1 SUCCESS');
|
|
}, 1000000);
|
|
});
|
|
});
|
|
|
|
forEachCli('nx', () => {
|
|
describe('Upgrade', () => {
|
|
it('not supported', async () => {}, 1000000);
|
|
});
|
|
});
|