mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-27 02:47:15 +00:00
test: added compiler + build output path test
Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
This commit is contained in:
@@ -141,6 +141,16 @@ export const BoardsService = Symbol('BoardsService');
|
||||
export interface BoardsService
|
||||
extends Installable<BoardsPackage>,
|
||||
Searchable<BoardsPackage, BoardSearch> {
|
||||
install(options: {
|
||||
item: BoardsPackage;
|
||||
progressId?: string;
|
||||
version?: Installable.Version;
|
||||
noOverwrite?: boolean;
|
||||
/**
|
||||
* Only for testing to avoid confirmation dialogs from Windows User Access Control when installing a platform.
|
||||
*/
|
||||
skipPostInstall?: boolean;
|
||||
}): Promise<void>;
|
||||
getState(): Promise<AvailablePorts>;
|
||||
getBoardDetails(options: { fqbn: string }): Promise<BoardDetails | undefined>;
|
||||
getBoardPackage(options: { id: string }): Promise<BoardsPackage | undefined>;
|
||||
|
||||
Reference in New Issue
Block a user