mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
11 lines
287 B
TypeScript
11 lines
287 B
TypeScript
import { expect } from 'chai'
|
|
import { Drop } from '../../../src/drop/drop'
|
|
|
|
describe('drop/drop', function () {
|
|
class CustomDrop extends Drop { }
|
|
|
|
it('.valueOf() should return undefined by default', async function () {
|
|
expect(new CustomDrop().valueOf()).to.be.undefined
|
|
})
|
|
})
|