Added cucumber tests (wip)

This commit is contained in:
vjrj 2018-02-01 17:00:30 +01:00
parent d798aa2cdf
commit fb3511b264
11 changed files with 272 additions and 11 deletions

View file

@ -0,0 +1,9 @@
import { Meteor } from 'meteor/meteor';
import { Random } from 'meteor/random';
export const testId = (id) => {
if (Meteor.isDevelopment) {
return id;
}
return Random.id;
};