Skip to content

Commit 985e6d4

Browse files
committed
reduce declarations
initial commit
0 parents  commit 985e6d4

16 files changed

+1555
-0
lines changed

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
.DS_Store
2+
3+
*.js
4+
*.js.map
5+
6+
coverage
7+
lib-cov
8+
*.seed
9+
*.log
10+
*.csv
11+
*.dat
12+
*.out
13+
*.pid
14+
*.gz
15+
*.tgz
16+
*.tmp
17+
*.sublime-workspace
18+
tscommand*.tmp.txt
19+
.tscache/
20+
21+
pids
22+
logs
23+
results
24+
scratch/
25+
.idea/
26+
.settings/
27+
.vscode/
28+
test-reports.xml
29+
30+
npm-debug.log
31+
node_modules

app.css

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
.landingContainer {
2+
background-color: #3C5AFD;
3+
}
4+
5+
.landingBackground {
6+
horizontal-align: center;
7+
vertical-align: top;
8+
opacity: 0.3;
9+
}
10+
11+
.landingText {
12+
color: white;
13+
horizontal-align: center;
14+
vertical-align: center;
15+
font-size: 24;
16+
}
17+
18+
.landingButton {
19+
color: white;
20+
vertical-align: bottom;
21+
}
22+
23+
.title {
24+
background-color: #3C5AFD;
25+
}
26+
27+
.statusBar {
28+
background-color: #3C5AFD;
29+
color: white;
30+
}
31+
32+
.statusText {
33+
horizontal-align: right;
34+
}
35+
36+
.testsTotal {
37+
font-size: 18;
38+
}
39+
40+
.testsPassed {
41+
font-size: 18;
42+
color: green;
43+
}
44+
45+
.testsFailed {
46+
font-size: 18;
47+
color: red;
48+
}
49+
50+
.testProgress {
51+
}
52+
53+
.passedTest {
54+
background-color: green;
55+
color: white;
56+
}
57+
58+
.passedTestTitle {
59+
font-size: 14;
60+
}
61+
62+
.passedTestDetails {
63+
font-size: 10;
64+
}
65+
66+
.failedTest {
67+
background-color: red;
68+
color: white;
69+
}
70+
71+
.failedTestTitle {
72+
font-size: 14;
73+
}
74+
75+
.failedTestDetails {
76+
font-size: 10;
77+
}
78+

app.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import application = require("application");
2+
application.mainModule = "./tns_modules/unit-test-runner/main-page";
3+
application.cssFile = "./tns_modules/unit-test-runner/app.css";
4+
application.start();

0 commit comments

Comments
 (0)