Skip to content

Commit c165e7e

Browse files
authored
chore: move test-apps to new home (emberjs#8245)
* chore: move test-apps to new home * fix lock * fix lint
1 parent 3467128 commit c165e7e

File tree

293 files changed

+150
-155
lines changed

Some content is hidden

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

293 files changed

+150
-155
lines changed

.eslintrc.js

+18-10
Original file line numberDiff line numberDiff line change
@@ -152,14 +152,14 @@ module.exports = {
152152
'packages/unpublished-test-infra/addon-test-support/qunit-asserts/assert-warning.ts',
153153
'packages/unpublished-test-infra/addon-test-support/qunit-asserts/assert-deprecation.ts',
154154
'packages/unpublished-test-infra/addon-test-support/qunit-asserts/assert-assertion.ts',
155-
'packages/unpublished-fastboot-test-app/types/global.d.ts',
156-
'packages/unpublished-fastboot-test-app/types/fastboot-test-app/index.d.ts',
157-
'packages/unpublished-fastboot-test-app/app/serializers/application.ts',
158-
'packages/unpublished-fastboot-test-app/app/router.ts',
159-
'packages/unpublished-fastboot-test-app/app/resolver.ts',
160-
'packages/unpublished-fastboot-test-app/app/config/environment.d.ts',
161-
'packages/unpublished-fastboot-test-app/app/app.ts',
162-
'packages/unpublished-fastboot-test-app/app/adapters/application.ts',
155+
'tests/fastboot/types/global.d.ts',
156+
'tests/fastboot/types/fastboot-test-app/index.d.ts',
157+
'tests/fastboot/app/serializers/application.ts',
158+
'tests/fastboot/app/router.ts',
159+
'tests/fastboot/app/resolver.ts',
160+
'tests/fastboot/app/config/environment.d.ts',
161+
'tests/fastboot/app/app.ts',
162+
'tests/fastboot/app/adapters/application.ts',
163163
'@types/require/index.d.ts',
164164
'@types/qunit/index.d.ts',
165165
'@types/fastboot/index.d.ts',
@@ -291,12 +291,20 @@ module.exports = {
291291
'.eslintrc.js',
292292
'.prettierrc.js',
293293
'scripts/**',
294-
'packages/unpublished-relationship-performance-test-app/server/**/*.js',
294+
'tests/performance/fixtures/**/*.js',
295+
'tests/performance/server/**/*.js',
296+
'tests/*/ember-cli-build.js',
297+
'tests/*/index.js',
298+
'tests/*/testem.js',
299+
'tests/*/.ember-cli.js',
300+
'tests/*/.eslintrc.js',
301+
'tests/*/.template-lintrc.js',
302+
'tests/*/config/**/*.js',
303+
'tests/*/tests/dummy/config/**/*.js',
295304
'packages/-ember-data/lib/*.js',
296305
'packages/private-build-infra/src/**/*.js',
297306
'packages/unpublished-test-infra/src/**/*.js',
298307
'packages/unpublished-eslint-rules/src/**/*.js',
299-
'packages/unpublished-relationship-performance-test-app/fixtures/**/*.js',
300308
'packages/*/.ember-cli.js',
301309
'packages/*/.eslintrc.js',
302310
'packages/*/.template-lintrc.js',

.github/PULL_REQUEST_TEMPLATE.md

+2-19
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,9 @@
1-
<!--
2-
3-
If this is your first PR to `ember-data`, you may want to read our [Contributor Guide](https://github.com/emberjs/data/blob/master/CONTRIBUTING.md).
4-
5-
-->
6-
71
## Description
82

9-
## Type of PR
10-
11-
What kind of change is this?
12-
13-
- [ ] refactor
14-
- [ ] internal bugfix
15-
- [ ] user-facing bugfix
16-
- [ ] new feature
17-
- [ ] deprecation
18-
- [ ] documentation
19-
- [ ] something else (please describe)
20-
- [ ] tests
3+
<!-- insert description here -->
214

225
## Notes for the release
236

24-
Does this PR need to be described in the Ember release blog post? Please briefly describe what should be shared.
7+
<!-- If this PR should be described in the Ember release blog post please briefly describe what should be shared. -->
258

269

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,6 @@ benchmarks/results/*.json
4444

4545
/DEBUG
4646
/packages/*/DEBUG
47+
/tests/*/DEBUG
4748

4849
.vscode/

lerna.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"npmClient": "pnpm",
33
"useWorkspaces": true,
44
"packages": [
5-
"packages/*"
5+
"packages/*",
6+
"tests/*"
67
],
78
"version": "4.9.0-alpha.6"
89
}

0 commit comments

Comments
 (0)