merge dev branch (more tests) (#47)
* more tests and bugfixes on spells * linting
This commit is contained in:
@ -4,9 +4,11 @@ require('babel-plugin-rewire');
|
||||
const command = require('@Commands/Roll');
|
||||
//const exec = command.__get__('exec');
|
||||
describe('roll command', () => {
|
||||
const message = { reply: str => str };
|
||||
const reply = jest.fn(str => str);
|
||||
const message = { author: { tag: 'test' }, reply: reply };
|
||||
it('should not return anything without correct arguments', () => {
|
||||
const args = ['1'];
|
||||
const args = ['1w6'];
|
||||
expect(command.exec(message, args)).resolves.toBeUndefined();
|
||||
expect(reply).toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user