Fix failing unit tests in browser (#5688)

* format js files using prettier

Used the following command to format the files
prettier --write "browser/app/js/**/*.js"

* fix failing unit tests in browser
This commit is contained in:
Kanagaraj M
2018-03-23 00:55:56 +05:30
committed by Harshavardhana
parent cb3818be27
commit c0e45f9098
95 changed files with 839 additions and 890 deletions

View File

@@ -26,10 +26,10 @@ describe("Alert", () => {
it("should call onDismiss when close button is clicked", () => {
const onDismiss = jest.fn()
const wrapper = mount(
<Alert show={true} type="danger" message="test" onDismiss={onDismiss} />,
<Alert show={true} type="danger" message="test" onDismiss={onDismiss} />
)
wrapper.find("button").simulate("click", {
preventDefault: jest.fn(),
wrapper.find("i").simulate("click", {
preventDefault: jest.fn()
})
expect(onDismiss).toHaveBeenCalled()
})

View File

@@ -21,15 +21,13 @@ import { AlertContainer } from "../AlertContainer"
describe("Alert", () => {
it("should render without crashing", () => {
shallow(
<AlertContainer
alert={{ show: true, type: "danger", message: "Test" }}
/>,
<AlertContainer alert={{ show: true, type: "danger", message: "Test" }} />
)
})
it("should render nothing if message is empty", () => {
const wrapper = shallow(
<AlertContainer alert={{ show: true, type: "danger", message: "" }} />,
<AlertContainer alert={{ show: true, type: "danger", message: "" }} />
)
expect(wrapper.find("Alert").length).toBe(0)
})

View File

@@ -32,15 +32,15 @@ describe("Alert actions", () => {
alert: {
id: 0,
message: "Test alert",
type: "danger",
},
},
type: "danger"
}
}
]
store.dispatch(
actionsAlert.set({
message: "Test alert",
type: "danger",
}),
type: "danger"
})
)
const actions = store.getActions()
expect(actions).toEqual(expectedActions)
@@ -53,20 +53,20 @@ describe("Alert actions", () => {
type: "alert/SET",
alert: {
id: 1,
message: "Test alert",
},
message: "Test alert"
}
},
{
type: "alert/CLEAR",
alert: {
id: 1,
},
},
id: 1
}
}
]
store.dispatch(
actionsAlert.set({
message: "Test alert",
}),
message: "Test alert"
})
)
jest.runAllTimers()
const actions = store.getActions()
@@ -77,8 +77,8 @@ describe("Alert actions", () => {
const store = mockStore()
const expectedActions = [
{
type: "alert/CLEAR",
},
type: "alert/CLEAR"
}
]
store.dispatch(actionsAlert.clear())
const actions = store.getActions()

View File

@@ -21,7 +21,7 @@ describe("alert reducer", () => {
it("should return the initial state", () => {
expect(reducer(undefined, {})).toEqual({
show: false,
type: "danger",
type: "danger"
})
})
@@ -32,14 +32,14 @@ describe("alert reducer", () => {
alert: {
id: 1,
type: "danger",
message: "Test message",
},
}),
message: "Test message"
}
})
).toEqual({
show: true,
id: 1,
type: "danger",
message: "Test message",
message: "Test message"
})
})
@@ -49,15 +49,15 @@ describe("alert reducer", () => {
{
show: true,
type: "danger",
message: "Test message",
message: "Test message"
},
{
type: actionsAlert.CLEAR,
},
),
type: actionsAlert.CLEAR
}
)
).toEqual({
show: false,
type: "danger",
type: "danger"
})
})
@@ -68,18 +68,18 @@ describe("alert reducer", () => {
show: true,
id: 1,
type: "danger",
message: "Test message",
message: "Test message"
},
{
type: actionsAlert.CLEAR,
alert: {
id: 1,
},
},
),
id: 1
}
}
)
).toEqual({
show: false,
type: "danger",
type: "danger"
})
})
@@ -90,20 +90,20 @@ describe("alert reducer", () => {
show: true,
id: 1,
type: "danger",
message: "Test message",
message: "Test message"
},
{
type: actionsAlert.CLEAR,
alert: {
id: 2,
},
},
),
id: 2
}
}
)
).toEqual({
show: true,
id: 1,
type: "danger",
message: "Test message",
message: "Test message"
})
})
})