11 lines
318 B
JavaScript
11 lines
318 B
JavaScript
import { test, given } from 'sazerac'
|
|
import { svg2base64 } from './svg-helpers.js'
|
|
|
|
describe('SVG helpers', function () {
|
|
test(svg2base64, () => {
|
|
given('<svg xmlns="http://www.w3.org/2000/svg"/>').expect(
|
|
'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciLz4='
|
|
)
|
|
})
|
|
})
|