Je kunt niet meer dan 25 onderwerpen selecteren
Onderwerpen moeten beginnen met een letter of nummer, kunnen streepjes bevatten ('-') en kunnen maximaal 35 tekens lang zijn.
25 regels
660 B
25 regels
660 B
4 jaren geleden
|
// Tests for the behavior of the links collection
|
||
|
//
|
||
|
// https://guide.meteor.com/testing.html
|
||
|
|
||
|
import { Meteor } from 'meteor/meteor';
|
||
|
import { assert } from 'chai';
|
||
|
import Links from './Links.js';
|
||
|
|
||
|
if (Meteor.isServer) {
|
||
|
describe('links collection', function () {
|
||
|
it('insert correctly', function () {
|
||
|
const linkId = Links.insert({
|
||
|
title: 'meteor homepage',
|
||
|
url: 'https://www.meteor.com',
|
||
|
});
|
||
|
const added = Links.find({ _id: linkId });
|
||
|
const collectionName = added._getCollectionName();
|
||
|
const count = added.count();
|
||
|
|
||
|
assert.equal(collectionName, 'links');
|
||
|
assert.equal(count, 1);
|
||
|
});
|
||
|
});
|
||
|
}
|