aboutsummaryrefslogtreecommitdiffstats
path: root/spec/setupBrowser.js
blob: 6ec7816f60778b3471922ae11a24e779fcf7712f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { buildCanvas, buildFixtures, clear } from './helpers.js'

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

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