├── .gitignore ├── LICENSE ├── README.md ├── src ├── .versions ├── ConsoleReporter.js ├── main.js └── package.js └── test-app ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── packages ├── tests-proxy │ ├── package.js │ └── tests └── velocity:console-reporter └── tests └── jasmine ├── .jshintrc └── server └── integration └── ConsoleReporterSpec.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/README.md -------------------------------------------------------------------------------- /src/.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/src/.versions -------------------------------------------------------------------------------- /src/ConsoleReporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/src/ConsoleReporter.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/src/main.js -------------------------------------------------------------------------------- /src/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/src/package.js -------------------------------------------------------------------------------- /test-app/.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/test-app/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /test-app/.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /test-app/.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/test-app/.meteor/.id -------------------------------------------------------------------------------- /test-app/.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/test-app/.meteor/packages -------------------------------------------------------------------------------- /test-app/.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /test-app/.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.1.0.2 2 | -------------------------------------------------------------------------------- /test-app/.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/test-app/.meteor/versions -------------------------------------------------------------------------------- /test-app/packages/tests-proxy/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/test-app/packages/tests-proxy/package.js -------------------------------------------------------------------------------- /test-app/packages/tests-proxy/tests: -------------------------------------------------------------------------------- 1 | ../../tests -------------------------------------------------------------------------------- /test-app/packages/velocity:console-reporter: -------------------------------------------------------------------------------- 1 | ../.. -------------------------------------------------------------------------------- /test-app/tests/jasmine/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/test-app/tests/jasmine/.jshintrc -------------------------------------------------------------------------------- /test-app/tests/jasmine/server/integration/ConsoleReporterSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-velocity/console-reporter/HEAD/test-app/tests/jasmine/server/integration/ConsoleReporterSpec.js --------------------------------------------------------------------------------