Skip to content

Commit 64dcf4f

Browse files
author
Developer
committed
test: add integration tests for Angular, Lit, Nuxt, React, Solid, Svelte and Vue
1 parent f564e18 commit 64dcf4f

File tree

101 files changed

+43681
-0
lines changed

Some content is hidden

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

101 files changed

+43681
-0
lines changed

test/angular/.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
2+
3+
# Compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
/bazel-out
8+
9+
# Node
10+
/node_modules
11+
npm-debug.log
12+
yarn-error.log
13+
14+
# IDEs and editors
15+
.idea/
16+
.project
17+
.classpath
18+
.c9/
19+
*.launch
20+
.settings/
21+
*.sublime-workspace
22+
23+
# Visual Studio Code
24+
.vscode/*
25+
!.vscode/settings.json
26+
!.vscode/tasks.json
27+
!.vscode/launch.json
28+
!.vscode/extensions.json
29+
.history/*
30+
31+
# Miscellaneous
32+
/.angular/cache
33+
.sass-cache/
34+
/connect.lock
35+
/coverage
36+
/libpeerconnection.log
37+
testem.log
38+
/typings
39+
40+
# System files
41+
.DS_Store
42+
Thumbs.db

test/angular/angular.json

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"angular": {
7+
"projectType": "application",
8+
"schematics": {
9+
"@schematics/angular:class": {
10+
"skipTests": true
11+
},
12+
"@schematics/angular:component": {
13+
"skipTests": true
14+
},
15+
"@schematics/angular:directive": {
16+
"skipTests": true
17+
},
18+
"@schematics/angular:guard": {
19+
"skipTests": true
20+
},
21+
"@schematics/angular:interceptor": {
22+
"skipTests": true
23+
},
24+
"@schematics/angular:pipe": {
25+
"skipTests": true
26+
},
27+
"@schematics/angular:resolver": {
28+
"skipTests": true
29+
},
30+
"@schematics/angular:service": {
31+
"skipTests": true
32+
}
33+
},
34+
"root": "",
35+
"sourceRoot": "src",
36+
"prefix": "app",
37+
"architect": {
38+
"build": {
39+
"builder": "@angular/build:application",
40+
"options": {
41+
"browser": "src/main.ts",
42+
"polyfills": [
43+
"zone.js"
44+
],
45+
"tsConfig": "tsconfig.app.json",
46+
"assets": [
47+
{
48+
"glob": "**/*",
49+
"input": "public"
50+
}
51+
],
52+
"styles": [
53+
"src/styles.css"
54+
],
55+
"server": "src/main.server.ts",
56+
"outputMode": "server",
57+
"ssr": {
58+
"entry": "src/server.ts"
59+
}
60+
},
61+
"configurations": {
62+
"production": {
63+
"budgets": [
64+
{
65+
"type": "initial",
66+
"maximumWarning": "500kB",
67+
"maximumError": "1MB"
68+
},
69+
{
70+
"type": "anyComponentStyle",
71+
"maximumWarning": "4kB",
72+
"maximumError": "8kB"
73+
}
74+
],
75+
"outputHashing": "all"
76+
},
77+
"development": {
78+
"optimization": false,
79+
"extractLicenses": false,
80+
"sourceMap": true
81+
}
82+
},
83+
"defaultConfiguration": "production"
84+
},
85+
"serve": {
86+
"builder": "@angular/build:dev-server",
87+
"configurations": {
88+
"production": {
89+
"buildTarget": "angular:build:production"
90+
},
91+
"development": {
92+
"buildTarget": "angular:build:development"
93+
}
94+
},
95+
"defaultConfiguration": "development"
96+
},
97+
"extract-i18n": {
98+
"builder": "@angular/build:extract-i18n"
99+
},
100+
"test": {
101+
"builder": "@angular/build:karma",
102+
"options": {
103+
"polyfills": [
104+
"zone.js",
105+
"zone.js/testing"
106+
],
107+
"tsConfig": "tsconfig.spec.json",
108+
"assets": [
109+
{
110+
"glob": "**/*",
111+
"input": "public"
112+
}
113+
],
114+
"styles": [
115+
"src/styles.css"
116+
]
117+
}
118+
}
119+
}
120+
}
121+
}
122+
}

0 commit comments

Comments
 (0)