@antv/x6
Version:
JavaScript diagramming library that uses SVG and HTML for rendering.
9 lines • 324 B
JavaScript
import { version } from './version';
describe('version', () => {
it('should match the `version` field of package.json', () => {
// eslint-disable-next-line
const expected = require('../../package.json').version;
expect(version).toBe(expected);
});
});
//# sourceMappingURL=version.test.js.map