You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setupBrowser.js 237B

123456789101112
  1. import { buildCanvas, buildFixtures, clear } from './helpers.js'
  2. beforeEach(() => {
  3. //buildFixtures()
  4. buildCanvas()
  5. window.container = document.getElementById('canvas')
  6. })
  7. afterEach(() => {
  8. clear()
  9. window.container = null
  10. })