diff --git a/editor/src/components/canvas/right-menu.tsx b/editor/src/components/canvas/right-menu.tsx deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/editor/src/templates/editor-canvas.spec.ts b/editor/src/templates/editor-canvas.spec.ts deleted file mode 100644 index 1d1e83448fe6..000000000000 --- a/editor/src/templates/editor-canvas.spec.ts +++ /dev/null @@ -1,17 +0,0 @@ -describe('Pressing the spacebar whilst in Select mode', () => { - it('computes the stack of elements under the mouse', () => {}) - it('should select the first element in the stack if no element is selected', () => {}) - it('should select the next element in the stack', () => {}) - it('should select the first element in the stack if the last element is selected', () => {}) -}) - -describe('Hiding an element', () => { - it('should update the editor session model on the Swift side', () => {}) - it('should add the element to the list of top level hidden components', () => {}) - it("should only render the corners of the element's frame if it is a top level hidden component", () => {}) - it('should not render the element at all if it is a descendant of a hidden element', () => {}) - it('should prevent the element from being targeted via the Canvas', () => {}) - it('should prevent the element from being selected via the Canvas', () => {}) - it('should prevent the element from being a possible parent when inserting a new element', () => {}) - it('should prevent the element from being used when generating guidelines', () => {}) -})