|
1 | 1 | import Editor from "../Editor" |
2 | | -import VirtualElement from "../VirtualElement" |
3 | | -import VirtualInlineElement from "../VirtualInlineElement" |
4 | | -import VirtualMultilineElement from "../VirtualMultilineElement" |
5 | | -import VirtualPosition from "../VirtualPosition" |
6 | | -import VirtualRange from "../VirtualRange" |
| 2 | +import Element from "../Element" |
| 3 | +import InlineElement from "../InlineElement" |
| 4 | +import MultilineElement from "../MultilineElement" |
| 5 | +import Position from "../Position" |
| 6 | +import Range from "../Range" |
7 | 7 |
|
8 | 8 | describe("", () => { |
9 | 9 | test("", () => expect(new Editor() instanceof Editor).toBeTruthy()) |
10 | | - test("", () => expect(new VirtualElement() instanceof VirtualElement).toBeTruthy()) |
11 | | - test("", () => expect(new VirtualInlineElement() instanceof VirtualInlineElement).toBeTruthy()) |
12 | | - test("", () => expect(new VirtualMultilineElement() instanceof VirtualMultilineElement).toBeTruthy()) |
13 | | - test("", () => expect(new VirtualPosition() instanceof VirtualPosition).toBeTruthy()) |
14 | | - test("", () => expect(new VirtualRange() instanceof VirtualRange).toBeTruthy()) |
| 10 | + test("", () => expect(new Element() instanceof Element).toBeTruthy()) |
| 11 | + test("", () => expect(new InlineElement() instanceof InlineElement).toBeTruthy()) |
| 12 | + test("", () => expect(new MultilineElement() instanceof MultilineElement).toBeTruthy()) |
| 13 | + test("", () => expect(new Position() instanceof Position).toBeTruthy()) |
| 14 | + test("", () => expect(new Range() instanceof Range).toBeTruthy()) |
15 | 15 | }) |
0 commit comments