You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 line
512 B
21 line
512 B
4 年之前
|
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);
|
||
|
});
|
||
|
});
|
||
|
}
|