Skip to content

Commit 3254412

Browse files
committed
build(deps): deps updated
1 parent 9b9c2db commit 3254412

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+1162
-898
lines changed

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion

README.md

Lines changed: 6 additions & 4 deletions

apps/begetter-e2e/jest.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
name: 'begetter-e2e',
3+
preset: '../../jest.config.js',
4+
coverageDirectory: '../../coverage/apps/begetter-e2e',
5+
};

apps/modular-e2e/tests/modular.test.ts renamed to apps/begetter-e2e/tests/begetter.test.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { checkFilesExist, ensureNxProject, readJson, runNxCommandAsync, uniq } from '@nrwl/nx-plugin/testing';
2-
describe('modular e2e', () => {
3-
it('should create modular', async (done) => {
4-
const plugin = uniq('modular');
5-
ensureNxProject('@xmlking/nxp-modular', 'dist/libs/modular');
6-
await runNxCommandAsync(`generate @xmlking/nxp-modular:domain ${plugin}`);
2+
describe('begetter e2e', () => {
3+
it('should create begetter', async (done) => {
4+
const plugin = uniq('begetter');
5+
ensureNxProject('@xmlking/nxp-begetter', 'dist/libs/begetter');
6+
await runNxCommandAsync(`generate @xmlking/nxp-begetter:domain ${plugin}`);
77

88
const result = await runNxCommandAsync(`build ${plugin}`);
99
expect(result.stdout).toContain('Builder ran');
@@ -13,19 +13,19 @@ describe('modular e2e', () => {
1313

1414
describe('--directory', () => {
1515
it('should create src in the specified directory', async (done) => {
16-
const plugin = uniq('modular');
17-
ensureNxProject('@xmlking/nxp-modular', 'dist/libs/modular');
18-
await runNxCommandAsync(`generate @xmlking/nxp-modular:domain ${plugin} --platform web`);
16+
const plugin = uniq('begetter');
17+
ensureNxProject('@xmlking/nxp-begetter', 'dist/libs/begetter');
18+
await runNxCommandAsync(`generate @xmlking/nxp-begetter:domain ${plugin} --platform web`);
1919
expect(() => checkFilesExist(`libs/${plugin}/domain/src/index.ts`)).not.toThrow();
2020
done();
2121
});
2222
});
2323

2424
describe('--lazy', () => {
2525
it('should add tags to nx.json', async (done) => {
26-
const plugin = uniq('modular');
27-
ensureNxProject('@xmlking/nxp-modular', 'dist/libs/modular');
28-
await runNxCommandAsync(`generate @xmlking/nxp-modular:domain ${plugin} --lazy`);
26+
const plugin = uniq('begetter');
27+
ensureNxProject('@xmlking/nxp-begetter', 'dist/libs/begetter');
28+
await runNxCommandAsync(`generate @xmlking/nxp-begetter:domain ${plugin} --lazy`);
2929
const nxJson = readJson('nx.json');
3030
expect(nxJson.projects[plugin].tags).toEqual(['e2etag', 'e2ePackage']);
3131
done();
File renamed without changes.
File renamed without changes.

apps/modular-e2e/jest.config.js

Lines changed: 0 additions & 5 deletions
This file was deleted.
File renamed without changes.
Lines changed: 24 additions & 23 deletions

0 commit comments

Comments
 (0)