/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
adev/src/app/editor/code-editor/services/diagnostics-state.service.spec.ts
23 строки
540 B
Kristiyan Kostadinov
test: remove unnecessary test calls
24 ноя 2025, 18:18
24 ноя 2025, 18:18
26e2092
Код
Авторство
О чём код?
/*! * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {TestBed} from '@angular/core/testing'; import {DiagnosticsState} from './diagnostics-state.service'; describe('DiagnosticsState', () => { let service: DiagnosticsState; beforeEach(() => { service = TestBed.inject(DiagnosticsState); }); it('should be created', () => { expect(service).toBeTruthy(); }); });