summaryrefslogtreecommitdiffstats
path: root/spec/setupBrowser.js
blob: fb68b076714080bbd3f877cc8bc9cf5fad6e8f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* globals beforeEach, afterEach */
import { buildCanvas, clear } from './helpers.js'

beforeEach(() => {
  // buildFixtures()
  buildCanvas()
  window.container = document.getElementById('canvas')
})

afterEach(() => {
  clear()
  window.container = null
})