Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
21 rader
512 B
21 rader
512 B
4 år sedan
|
import { Meteor } from 'meteor/meteor';
|
||
|
import { assert } from 'chai';
|
||
|
import Links from '../collections/Links.js';
|
||
|
import './methods.js';
|
||
|
|
||
|
if (Meteor.isServer) {
|
||
|
describe('method: createLink', function () {
|
||
|
beforeEach(function () {
|
||
|
Links.remove({});
|
||
|
});
|
||
|
|
||
|
it('can add a new link', function () {
|
||
|
const addLink = Meteor.server.method_handlers['createLink'];
|
||
|
|
||
|
addLink.apply({}, ['meteor.com', 'https://www.meteor.com']);
|
||
|
|
||
|
assert.equal(Links.find().count(), 1);
|
||
|
});
|
||
|
});
|
||
|
}
|