rename TrivialConsoleReporter to ConsoleReporter

This commit is contained in:
Davis W. Frank
2011-06-16 22:35:57 -07:00
parent 0b97951766
commit e4e9b51544
6 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
describe("TrivialConsoleReporter", function() {
describe("ConsoleReporter", function() {
//keep these literal. otherwise the test loses value as a test.
function green(str) {
return '\033[32m' + str + '\033[0m';
@@ -107,7 +107,7 @@ describe("TrivialConsoleReporter", function() {
})();
done = false;
reporter = new jasmine.TrivialConsoleReporter(out.print, function(runner) {
reporter = new jasmine.ConsoleReporter(out.print, function(runner) {
done = true
});
});