wikibase-edit
Version:
Edit Wikibase from NodeJS
27 lines • 1.1 kB
JavaScript
import 'should';
import { setLabel } from '../../../src/lib/label/set.js';
import { randomString, someEntityId } from '../utils.js';
const language = 'fr';
describe('label', () => {
it('should throw if not passed an entity', () => {
// @ts-expect-error
setLabel.bind(null, {}).should.throw('invalid entity id');
});
it('should throw if not passed a language', () => {
// @ts-expect-error
setLabel.bind(null, { id: someEntityId }).should.throw('invalid language');
});
it('should throw if not passed a label', () => {
// @ts-expect-error
setLabel.bind(null, { id: someEntityId, language }).should.throw('missing label');
});
it('should return an action and data', () => {
const value = `Bac à Sable (${randomString()})`;
const { action, data } = setLabel({ id: someEntityId, language, value });
action.should.equal('wbsetlabel');
data.id.should.equal(someEntityId);
data.language.should.equal(language);
data.value.should.equal(value);
});
});
//# sourceMappingURL=set.js.map