diff --git a/__test__/after-task.spec.js b/__test__/after-task.spec.js
index 7bff727..2fd5c10 100644
--- a/__test__/after-task.spec.js
+++ b/__test__/after-task.spec.js
@@ -25,7 +25,7 @@ test('"after" task only prints summary in unattended mode', async t => {
here: false,
prompts,
run,
- properties: {name: 'my-app'},
+ properties: {name: 'app'},
features: ['a', 'b'],
notDefaultFeatures: ['a', 'b-c'],
ansiColors
@@ -38,7 +38,7 @@ test('"after" task only prints summary in unattended mode', async t => {
t.is(printOut,
'\nGet Started\n' +
- 'cd my-app\n' +
+ 'cd app\n' +
'npm install\n' +
'npm start\n\n'
);
@@ -61,7 +61,7 @@ test('"after" task only prints summary in unattended mode and here mode', async
here: true,
prompts,
run,
- properties: {name: 'my-app'},
+ properties: {name: 'app'},
features: ['a', 'b'],
notDefaultFeatures: ['a', 'b-c'],
ansiColors
@@ -98,7 +98,7 @@ test('"after" task installs deps with npm, and prints summary', async t => {
here: false,
prompts,
run,
- properties: {name: 'my-app'},
+ properties: {name: 'app'},
features: ['a', 'b'],
notDefaultFeatures: ['a', 'b-c'],
ansiColors
@@ -113,7 +113,7 @@ test('"after" task installs deps with npm, and prints summary', async t => {
'\nNext time, you can try to create similar project in silent mode:\n' +
' npx makes aurelia new-project-name -s a,b-c \n\n' +
'Get Started\n' +
- 'cd my-app\n' +
+ 'cd app\n' +
'npm start\n\n'
);
});
@@ -137,7 +137,7 @@ test('"after" task installs deps with yarn, and prints summary', async t => {
here: false,
prompts,
run,
- properties: {name: 'my-app'},
+ properties: {name: 'app'},
features: ['a', 'b'],
notDefaultFeatures: ['a', 'b-c'],
ansiColors
@@ -152,7 +152,7 @@ test('"after" task installs deps with yarn, and prints summary', async t => {
'\nNext time, you can try to create similar project in silent mode:\n' +
' npx makes aurelia new-project-name -s a,b-c \n\n' +
'Get Started\n' +
- 'cd my-app\n' +
+ 'cd app\n' +
'yarn start\n\n'
);
});
@@ -176,7 +176,7 @@ test('"after" task installs deps with pnpm, and prints summary', async t => {
here: false,
prompts,
run,
- properties: {name: 'my-app'},
+ properties: {name: 'app'},
features: ['a', 'b'],
notDefaultFeatures: ['a', 'b-c'],
ansiColors
@@ -191,7 +191,7 @@ test('"after" task installs deps with pnpm, and prints summary', async t => {
'\nNext time, you can try to create similar project in silent mode:\n' +
' npx makes aurelia new-project-name -s a,b-c \n\n' +
'Get Started\n' +
- 'cd my-app\n' +
+ 'cd app\n' +
'pnpm start\n\n'
);
});
@@ -215,7 +215,7 @@ test('"after" task installs deps, and prints summary in here mode', async t => {
here: true,
prompts,
run,
- properties: {name: 'my-app'},
+ properties: {name: 'app'},
features: ['a', 'b'],
notDefaultFeatures: ['a', 'b-c'],
ansiColors
diff --git a/app-min/e2e__if_playwright/app.spec.ext__if_not_plugin b/app-min/e2e__if_playwright/app.spec.ext__if_not_plugin
index 9e747ef..d37b0e7 100644
--- a/app-min/e2e__if_playwright/app.spec.ext__if_not_plugin
+++ b/app-min/e2e__if_playwright/app.spec.ext__if_not_plugin
@@ -9,8 +9,8 @@ test.beforeEach(async ({ page }) => {
await page.goto('http://localhost:9000');
});
-test.describe('MyApp', () => {
+test.describe('App', () => {
test('shows message', async ({ page }) => {
- await expect(page.locator('my-app div')).toHaveText('Hello World!');
+ await expect(page.locator('app div')).toHaveText('Hello World!');
});
});
diff --git a/app-min/src/my-app.ext b/app-min/src/my-app.ext
index 008d10f..c346c3c 100644
--- a/app-min/src/my-app.ext
+++ b/app-min/src/my-app.ext
@@ -1,3 +1,3 @@
-export class MyApp {
+export class App {
/* @if typescript */public /* @endif */message = 'Hello World!';
}
diff --git a/app-min/test__if_not_no-unit-tests/my-app.spec.ext b/app-min/test__if_not_no-unit-tests/my-app.spec.ext
index 60350f5..dac2273 100644
--- a/app-min/test__if_not_no-unit-tests/my-app.spec.ext
+++ b/app-min/test__if_not_no-unit-tests/my-app.spec.ext
@@ -5,11 +5,11 @@ import { expect } from 'chai';
import { CustomElement } from 'aurelia';
// @endif
import { render } from './helper';
-import { MyApp } from '../src/my-app';
+import { App } from '../src/app';
-describe('my-app', () => {
+describe('app', () => {
it('should render message', async () => {
- const node = (await render('