housekeeping: .js -> .jsx file extensions (via #5014)

* housekeeping: `.js` -> `.jsx` where necessary
This commit is contained in:
kyle
2018-11-08 16:37:21 +00:00
committed by GitHub
parent 59bd9f4988
commit ad786b023f
35 changed files with 2 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
/* eslint-env mocha */
import React from "react"
import expect, { createSpy } from "expect"
import { shallow } from "enzyme"
import Operation from "components/operation"
describe("<Operation/>", function(){
it.skip("blanket tests", function(){
let props = {
operation: {get: ()=>{}},
getComponent: ()=> "div",
specSelectors: { security(){} },
path: "/one",
method: "get",
shown: true,
showOpId: "",
showOpIdPrefix: "",
toggleCollapse: createSpy()
}
let wrapper = shallow(<Operation {...props}/>)
expect(wrapper.find(".opblock").length).toEqual(1)
expect(wrapper.find(".opblock-summary-method").text()).toEqual("GET")
expect(wrapper.find(".opblock-summary-path").text().trim()).toEqual("/one")
expect(wrapper.find("[isOpened]").prop("isOpened")).toEqual(true)
wrapper.find(".opblock-summary").simulate("click")
expect(props.toggleCollapse).toHaveBeenCalled()
})
})