Try to fix tests. Part 2.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2021-06-24 23:08:14 +03:00
parent 58081c13cf
commit 7f648720af
4 changed files with 3 additions and 2 deletions

0
client/lib/keyboard.js Executable file → Normal file
View file

View file

@ -1,7 +1,7 @@
/* eslint-env mocha */
import { Random } from 'meteor/random';
import { expect } from 'chai';
import './utils';
import '../utils';
describe('utils', function() {
describe(allowIsBoardAdmin.name, function() {

View file

@ -0,0 +1 @@
import './Utils.tests';

View file

@ -19,7 +19,7 @@
if (Meteor.isServer) {
describe('server', function() {
import '../server/tests/utils.tests';
import '../server/lib/tests';
});
}