Bug 1315242 - Part 5: Add a testcase for location in Evaluation Result. r=bgrins

This commit is contained in:
Tooru Fujisawa 2016-11-11 01:06:26 +09:00
Родитель 85e0da8e93
Коммит 116a43b9d0
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -72,4 +72,13 @@ describe("EvaluationResult component:", () => {
wrapper = render(EvaluationResult({ message}));
expect(wrapper.find(".indent").prop("style").width).toBe(`0`);
});
it("has location information", () => {
const message = stubPreparedMessages.get("1 + @");
const wrapper = render(EvaluationResult({ message }));
const locationLink = wrapper.find(`.message-location`);
expect(locationLink.length).toBe(1);
expect(locationLink.text()).toBe("debugger eval code:1:4");
});
});