Files
CropCompass/node_modules/svg.js/spec/spec/defs.js
T

12 lines
208 B
JavaScript

describe('Defs', function() {
var defs
beforeEach(function() {
defs = draw.defs()
})
it('creates an instance of SVG.Defs', function() {
expect(defs instanceof SVG.Defs).toBeTruthy()
})
})