mirror of https://gitee.com/antv-l7/antv-l7
8 lines
238 B
TypeScript
8 lines
238 B
TypeScript
|
import { version } from '../src/version';
|
||
|
describe('version', () => {
|
||
|
it('should match the `version` field of package.json', () => {
|
||
|
const expected = require('../package.json').version;
|
||
|
expect(version).toBe(expected);
|
||
|
});
|
||
|
});
|