Skip to main content
Module

x/dayjs/test/plugin.test.js

⏰ Day.js 2kB immutable date-time library alternative to Moment.js with the same modern API
Go to Latest
File
import MockDate from 'mockdate'import dayjs from '../src'
const testPlugin = (o, c, d) => { c.prototype.newApi = () => ('hello world') d.newFunc = () => ('hi world')}const testPluginWithConfig = (o, c) => { c.prototype.newApiWithConfig = () => (`hello world ${o || ''}`)}
dayjs.extend(testPlugin)dayjs.extend(testPluginWithConfig, 'good')
beforeEach(() => { MockDate.set(new Date())})
afterEach(() => { MockDate.reset()})
it('Plugin extend method and option', () => { expect(dayjs().newApi()).toBe('hello world') expect(dayjs().newApiWithConfig()).toBe('hello world good')})
it('Plugin extend dayjs', () => { expect(dayjs.newFunc()).toBe('hi world')})
it('Plugin use core utils', () => { // u => isUndefined expect(dayjs().$utils().u).toBeInstanceOf(Function)})