Added caching of test results. 1) Makes test panel load fast. 2) Keeps results between refreshes

pull/223/head
Ruben Daniels 2015-09-26 15:53:36 -07:00
rodzic 721cb0d8f3
commit 50ecdb7a28
3 zmienionych plików z 7 dodań i 3 usunięć

Wyświetl plik

@ -184,6 +184,7 @@ module.exports = function(config, optimist) {
"./c9.vfs.server/cache", "./c9.vfs.server/cache",
"./c9.vfs.server/download", "./c9.vfs.server/download",
"./c9.vfs.server/filelist", "./c9.vfs.server/filelist",
"./c9.vfs.server/fetchcache",
"./c9.vfs.server/statics", "./c9.vfs.server/statics",
"./c9.analytics/mock_analytics", "./c9.analytics/mock_analytics",
"./c9.metrics/mock_metrics", "./c9.metrics/mock_metrics",

Wyświetl plik

@ -108,8 +108,8 @@
"c9.ide.save": "#e00549cb0f", "c9.ide.save": "#e00549cb0f",
"c9.ide.scm": "#b07648109a", "c9.ide.scm": "#b07648109a",
"c9.ide.terminal.monitor": "#b76f1c9f24", "c9.ide.terminal.monitor": "#b76f1c9f24",
"c9.ide.test": "#9cbf45fb56", "c9.ide.test": "#b9b64a5f59",
"c9.ide.test.mocha": "#3126bb6416", "c9.ide.test.mocha": "#5af621185e",
"c9.ide.theme.flat": "#2de8414db7", "c9.ide.theme.flat": "#2de8414db7",
"c9.ide.threewaymerge": "#229382aa0b", "c9.ide.threewaymerge": "#229382aa0b",
"c9.ide.undo": "#b028bcb4d5", "c9.ide.undo": "#b028bcb4d5",

Wyświetl plik

@ -435,7 +435,7 @@ body .runner-form-header{
.runtestbtn .icon{ .runtestbtn .icon{
background-position: 1px 2px; background-position: 1px 2px;
height: 21px; height: 22px;
} }
@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx) { @media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx) {
@ -493,4 +493,7 @@ body .runner-form-header{
.c9-toolbarbutton-glossy .c9-icon { .c9-toolbarbutton-glossy .c9-icon {
height: 19px; height: 19px;
} }
.runtestbtn .icon{
height: 21px;
}
} }