Skip to content

Commit

Permalink
fix: replaces all names with mine muahahah
Browse files Browse the repository at this point in the history
  • Loading branch information
fumbleforce committed Oct 24, 2018
1 parent 011434c commit e799998
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 36 deletions.
39 changes: 20 additions & 19 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
allow-deny@1.1.0
autoupdate@1.4.0
babel-compiler@7.1.1
babel-runtime@1.2.4
autoupdate@1.5.0
babel-compiler@7.2.0
babel-runtime@1.3.0
base64@1.0.11
binary-heap@1.0.10
binary-heap@1.0.11
blaze@2.1.8
blaze-tools@1.0.10
boilerplate-generator@1.5.0
caching-compiler@1.1.12
boilerplate-generator@1.6.0
caching-compiler@1.2.0
caching-html-compiler@1.0.6
callback-hook@1.1.0
check@1.3.1
Expand All @@ -17,30 +17,32 @@ ddp-common@1.4.0
ddp-server@2.2.0
deps@1.0.12
diff-sequence@1.1.0
dynamic-import@0.4.1
ecmascript@0.11.1
dynamic-import@0.5.0
ecmascript@0.12.0
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.7.2
ecmascript-runtime-client@0.8.0
ecmascript-runtime-server@0.7.1
ejson@1.1.0
fetch@0.1.0
geojson-utils@1.0.10
html-tools@1.0.11
htmljs@1.0.11
http@1.4.1
hubroedu:mocha@3.0.0
id-map@1.1.0
inter-process-messaging@0.1.0
jquery@1.11.9
local-test:hubroedu:mocha@3.0.0
logging@1.1.20
meteor@1.9.0
minimongo@1.4.4
meteor@1.9.2
minimongo@1.4.5
modern-browsers@0.1.2
modules@0.12.2
modules-runtime@0.10.0
mongo@1.5.0
modules@0.13.0
modules-runtime@0.10.2
mongo@1.6.0
mongo-decimal@0.1.0
mongo-dev-server@1.1.0
mongo-id@1.0.7
npm-mongo@3.0.11
npm-mongo@3.1.1
observe-sequence@1.0.16
ordered-dict@1.1.0
practicalmeteor:mocha-core@1.0.1
Expand All @@ -49,7 +51,7 @@ random@1.1.0
reactive-var@1.0.11
reload@1.2.0
retry@1.1.0
routepolicy@1.0.13
routepolicy@1.1.0
socket-stream-client@0.2.2
spacebars@1.0.12
spacebars-compiler@1.1.0
Expand All @@ -59,6 +61,5 @@ tinytest@1.1.0
tmeasday:test-reporter-helpers@0.2.1
tracker@1.2.0
underscore@1.0.10
url@1.2.0
webapp@1.6.0
webapp@1.7.0
webapp-hashing@1.0.9
5 changes: 5 additions & 0 deletions meteor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.0.0

- Removed all coffeescript
- Redesigned the html reporter

# 2.4.5_6

- Add `ConsoleReporter` and `XunitReporter` more details in how to run then [HERE]().
Expand Down
7 changes: 5 additions & 2 deletions meteor/src/lib/MochaRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@ import {EventEmitter} from "events";
import ObjectLogger from "./ObjectLogger";
import MeteorPublishReporter from "./../reporters/MeteorPublishReporter";

const runCollection = new Mongo.Collection('mochaServerRunEvents');

const log = new ObjectLogger('MochaRunner', 'info');

class MochaRunner extends EventEmitter {
static initClass() {

this.instance = null;

this.prototype.VERSION = "2.4.5_6";
this.prototype.VERSION = "3.0.0";
this.prototype.serverRunEvents = null;
this.prototype.publishers = {};
}
Expand All @@ -51,7 +53,8 @@ class MochaRunner extends EventEmitter {
try {
log.enter('constructor');
this.utils = utils;
this.serverRunEvents = new Mongo.Collection('mochaServerRunEvents');
this.serverRunEvents = runCollection;

if (Meteor.isServer) {
Meteor.methods({
"mocha/runServerTests": this.runServerTests.bind(this)
Expand Down
4 changes: 1 addition & 3 deletions meteor/test-app/.meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,4 @@ ecmascript # Enable ECMAScript2015+ syntax in app code

autopublish # Publish all data to the clients (for prototyping)
insecure # Allow all DB writes from clients (for prototyping)
practicalmeteor:mocha@=2.4.5_6
practicalmeteor:chai
practicalmeteor:loglevel
hubroedu:mocha@=3.0.0
6 changes: 1 addition & 5 deletions meteor/test-app/.meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,7 @@ mongo-id@1.0.5
npm-mongo@1.4.44
observe-sequence@1.0.12
ordered-dict@1.0.8
practicalmeteor:chai@2.1.0_1
practicalmeteor:loglevel@1.2.0_2
practicalmeteor:mocha@2.4.5_6
practicalmeteor:mocha-core@1.0.1
practicalmeteor:sinon@1.14.1_2
hubroedu:mocha@3.0.0
promise@0.7.2
random@1.0.10
reactive-var@1.0.10
Expand Down
8 changes: 1 addition & 7 deletions meteor/test-package/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,13 @@ Package.onUse(function(api) {
api.use([
'meteor',
'mongo',
'coffeescript',
'practicalmeteor:loglevel',
'practicalmeteor:chai',
'ecmascript'
]);
});

Package.onTest(function(api) {
api.use([
'coffeescript',
'practicalmeteor:loglevel',
'practicalmeteor:chai',
'practicalmeteor:mocha@=2.4.5_6',
'hubroedu:mocha@=3.0.0',
'ecmascript',
'test-package'
]);
Expand Down

0 comments on commit e799998

Please sign in to comment.