Skip to content

Commit c0be0ab

Browse files
test(integration): Move integration tests to top-level folders
1 parent cb3a07e commit c0be0ab

Some content is hidden

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

68 files changed

+899
-44
lines changed

downstream_projects.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"angular5": "./test/angular-versions/v5",
3-
"angular6": "./test/angular-versions/v6",
4-
"typescript2.3": "./test/typescript-versions/typescript2.3",
5-
"typescript2.4": "./test/typescript-versions/typescript2.4",
6-
"typescript2.5": "./test/typescript-versions/typescript2.5",
7-
"typescript2.6": "./test/typescript-versions/typescript2.6",
8-
"typescript2.7": "./test/typescript-versions/typescript2.7",
9-
"typescript2.8": "./test/typescript-versions/typescript2.8",
2+
"angular5": "./test-angular-versions/v5",
3+
"angular6": "./test-angular-versions/v6",
4+
"typescript2.3": "./test-typescript-versions/typescript2.3",
5+
"typescript2.4": "./test-typescript-versions/typescript2.4",
6+
"typescript2.5": "./test-typescript-versions/typescript2.5",
7+
"typescript2.6": "./test-typescript-versions/typescript2.6",
8+
"typescript2.7": "./test-typescript-versions/typescript2.7",
9+
"typescript2.8": "./test-typescript-versions/typescript2.8",
1010
"sample-app-angular": "https://github.com/ui-router/sample-app-angular.git"
1111
}

test-angular-versions/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*/cypress/fixtures
2+
*/cypress/plugins
3+
*/cypress/screenshots
4+
*/cypress/videos
5+
*/cypress/support
6+
**/bundle.js
7+
*/yarn.lock
8+
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"project": {
4+
"name": "angular-v5"
5+
},
6+
"apps": [
7+
{
8+
"root": "src",
9+
"outDir": "dist",
10+
"assets": ["assets", "favicon.ico"],
11+
"index": "index.html",
12+
"main": "main.ts",
13+
"polyfills": "polyfills.ts",
14+
"test": "test.ts",
15+
"tsconfig": "tsconfig.app.json",
16+
"testTsconfig": "tsconfig.spec.json",
17+
"prefix": "app",
18+
"styles": ["styles.css"],
19+
"scripts": [],
20+
"environmentSource": "environments/environment.ts",
21+
"environments": {
22+
"dev": "environments/environment.ts",
23+
"prod": "environments/environment.prod.ts"
24+
}
25+
}
26+
],
27+
"e2e": {
28+
"protractor": {
29+
"config": "./protractor.conf.js"
30+
}
31+
},
32+
"lint": [
33+
{
34+
"project": "src/tsconfig.app.json",
35+
"exclude": "**/node_modules/**"
36+
},
37+
{
38+
"project": "src/tsconfig.spec.json",
39+
"exclude": "**/node_modules/**"
40+
},
41+
{
42+
"project": "e2e/tsconfig.e2e.json",
43+
"exclude": "**/node_modules/**"
44+
}
45+
],
46+
"test": {
47+
"karma": {
48+
"config": "./karma.conf.js"
49+
}
50+
},
51+
"defaults": {
52+
"styleExt": "css",
53+
"component": {}
54+
}
55+
}

test-angular-versions/v5/.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
8+
# dependencies
9+
/node_modules
10+
11+
# IDEs and editors
12+
/.idea
13+
.project
14+
.classpath
15+
.c9/
16+
*.launch
17+
.settings/
18+
*.sublime-workspace
19+
20+
# IDE - VSCode
21+
.vscode/*
22+
!.vscode/settings.json
23+
!.vscode/tasks.json
24+
!.vscode/launch.json
25+
!.vscode/extensions.json
26+
27+
# misc
28+
/.sass-cache
29+
/connect.lock
30+
/coverage
31+
/libpeerconnection.log
32+
npm-debug.log
33+
testem.log
34+
/typings
35+
36+
# e2e
37+
/e2e/*.js
38+
/e2e/*.map
39+
40+
# System Files
41+
.DS_Store
42+
Thumbs.db
43+

0 commit comments

Comments
 (0)