如何在Jest测试中防止“污染”变量?

时间:2018-04-13 03:37:02

标签: javascript jest

我的测试看起来像这样:

const aframeViewer = new VRMaker.AframeViewer()
let el
let panoramas
let panorama

beforeEach(() => {
  panorama = { objectId: '1' }
  panoramas = [panorama]
  el = 'vrmaker-aframe'
})

describe('commonViewer', () => {

  it('addPanoramas', () => {
    const oldPanoramas = clone(panoramas)
    aframeViewer.addPanoramas([{ objectId: '2' }])
    expect(aframeViewer.getPanoramas()).not.toBe(oldPanoramas)
  })

  it('getPanoramas', () => {
    expect(aframeViewer.getPanoramas()).toBe(panoramas)
  })

  it('getCurrentPanorama', () => {
    expect(aframeViewer.getCurrentPanorama()).toBe(panorama)
  })
}) 

这里的问题是aframeViewer.addPanoramas([{ objectId: '2' }])转变了这个:

[{ objectId: 1 }]

进入这个

[{ objectId: 1 }, { objectId: '2' }]

因此getPanoramas测试有一个污染变量。 (getCurrentPanorama遇到同样的问题。)

避免这种情况的最佳方法是什么?

1 个答案:

答案 0 :(得分:1)

  1. 声明let aframeViewer;并在beforeEach添加:

    aframeViewer = new VRMaker.AframeViewer()

  2. 不要指望在另一个测试之前运行一个测试,确保在beforeEach或测试开始时做任何你需要做的事情。

    < / LI>