mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-04-19 12:57:17 +00:00
10 lines
317 B
TypeScript
10 lines
317 B
TypeScript
import { TestViewContribution as TheiaTestViewContribution } from '@theia/test/lib/browser/view/test-view-contribution';
|
|
import { injectable } from 'inversify';
|
|
|
|
@injectable()
|
|
export class TestViewContribution extends TheiaTestViewContribution {
|
|
override async initializeLayout(): Promise<void> {
|
|
// NOOP
|
|
}
|
|
}
|