mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
test(core): correct typo in signal_spec.ts (#50392)
Corrects a typo in the signal_spec.ts file. PR Close #50392
This commit is contained in:
committed by
Jessica Janiuk
parent
e8c51a1840
commit
ea560a7098
@@ -9,7 +9,7 @@
|
||||
import {computed, setPostSignalSetFn, signal} from '@angular/core/src/signals';
|
||||
|
||||
describe('signals', () => {
|
||||
it('should be a getter which reflect the set value', () => {
|
||||
it('should be a getter which reflects the set value', () => {
|
||||
const state = signal(false);
|
||||
expect(state()).toBeFalse();
|
||||
state.set(true);
|
||||
|
||||
Reference in New Issue
Block a user