From ad781f0bfc7e74f6d86481a51a105c8bd14952c2 Mon Sep 17 00:00:00 2001 From: Silvano Cerza Date: Thu, 10 Mar 2022 16:25:23 +0100 Subject: [PATCH] Remove unused file --- .../src/test/browser/fixtures/serial.ts | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 arduino-ide-extension/src/test/browser/fixtures/serial.ts diff --git a/arduino-ide-extension/src/test/browser/fixtures/serial.ts b/arduino-ide-extension/src/test/browser/fixtures/serial.ts deleted file mode 100644 index ab8b333a..00000000 --- a/arduino-ide-extension/src/test/browser/fixtures/serial.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { SerialConfig } from '../../../common/protocol/serial-service'; -import { aBoard, anotherBoard, anotherPort, aPort } from './boards'; - -export const aSerialConfig: SerialConfig = { - board: aBoard, - port: aPort, - baudRate: 9600, -}; - -export const anotherSerialConfig: SerialConfig = { - board: anotherBoard, - port: anotherPort, - baudRate: 9600, -}; - -export class WebSocketMock { - readonly url: string; - constructor(url: string) { - this.url = url; - } - close() {} -}