diff --git a/src/components/editor/plugins/italic.test.js b/src/components/editor/plugins/italic.test.js index f4d315140..7b60a948b 100644 --- a/src/components/editor/plugins/italic.test.js +++ b/src/components/editor/plugins/italic.test.js @@ -1,9 +1,9 @@ import React from "react" import { shallow } from "enzyme" -import { ItalicButton, ItalicMark } from "./Italic" +import { ItalicButton, ItalicMark } from "./italic" import ToolbarButton from "../toolbar/ToolbarButton" -describe("editor/plugins/Italic", () => { +describe("editor/plugins/italic", () => { describe("ItalicMark", () => { const wrapper = shallow(test) diff --git a/src/components/editor/plugins/strikethrough.test.js b/src/components/editor/plugins/strikethrough.test.js index 0994791be..08c7c6725 100644 --- a/src/components/editor/plugins/strikethrough.test.js +++ b/src/components/editor/plugins/strikethrough.test.js @@ -1,9 +1,9 @@ import React from "react" import { shallow } from "enzyme" -import { StrikethroughButton, StrikethroughMark } from "./Strikethrough" +import { StrikethroughButton, StrikethroughMark } from "./strikethrough" import ToolbarButton from "../toolbar/ToolbarButton" -describe("editor/plugins/Strikethrough", () => { +describe("editor/plugins/strikethrough", () => { describe("StrikethroughMark", () => { const wrapper = shallow(test) diff --git a/src/components/editor/plugins/subscript.test.js b/src/components/editor/plugins/subscript.test.js index ec20e162b..9a43abdeb 100644 --- a/src/components/editor/plugins/subscript.test.js +++ b/src/components/editor/plugins/subscript.test.js @@ -1,9 +1,9 @@ import React from "react" import { shallow } from "enzyme" -import { SubscriptButton, SubscriptMark } from "./Subscript" +import { SubscriptButton, SubscriptMark } from "./subscript" import ToolbarButton from "../toolbar/ToolbarButton" -describe("editor/plugins/Subscript", () => { +describe("editor/plugins/subscript", () => { describe("SubscriptMark", () => { const wrapper = shallow(test) diff --git a/src/components/editor/plugins/superscript.test.js b/src/components/editor/plugins/superscript.test.js index 6a7dd93cd..b009d2198 100644 --- a/src/components/editor/plugins/superscript.test.js +++ b/src/components/editor/plugins/superscript.test.js @@ -1,9 +1,9 @@ import React from "react" import { shallow } from "enzyme" -import { SuperscriptButton, SuperscriptMark } from "./Superscript" +import { SuperscriptButton, SuperscriptMark } from "./superscript" import ToolbarButton from "../toolbar/ToolbarButton" -describe("editor/plugins/Superscript", () => { +describe("editor/plugins/superscript", () => { describe("SuperscriptMark", () => { const wrapper = shallow(test) diff --git a/src/components/editor/plugins/underline.test.js b/src/components/editor/plugins/underline.test.js index a03ac3552..299af6761 100644 --- a/src/components/editor/plugins/underline.test.js +++ b/src/components/editor/plugins/underline.test.js @@ -1,9 +1,9 @@ import React from "react" import { shallow } from "enzyme" -import { UnderlineButton, UnderlineMark } from "./Underline" +import { UnderlineButton, UnderlineMark } from "./underline" import ToolbarButton from "../toolbar/ToolbarButton" -describe("editor/plugins/Underline", () => { +describe("editor/plugins/underline", () => { describe("UnderlineMark", () => { const wrapper = shallow(test)