File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/svelte/tests/signals Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ describe('signals', () => {
215
215
} ;
216
216
} ) ;
217
217
218
- test ( 'correctly cleanup onowned nested derived values' , ( ) => {
218
+ test ( 'correctly cleanup unowned nested derived values' , ( ) => {
219
219
return ( ) => {
220
220
const nested : Derived < string > [ ] = [ ] ;
221
221
@@ -284,7 +284,7 @@ describe('signals', () => {
284
284
return [ ] ;
285
285
} ) ;
286
286
287
- test ( 'two effects with an unowned derived that has no depedencies ' , ( ) => {
287
+ test ( 'two effects with an unowned derived that has no dependencies ' , ( ) => {
288
288
const log : Array < Array < any > > = [ ] ;
289
289
290
290
render_effect ( ( ) => {
@@ -306,7 +306,7 @@ describe('signals', () => {
306
306
return [ $ . get ( some_state ) ] ;
307
307
} ) ;
308
308
309
- test ( 'two effects with an unowned derived that has some depedencies ' , ( ) => {
309
+ test ( 'two effects with an unowned derived that has some dependencies ' , ( ) => {
310
310
const log : Array < Array < any > > = [ ] ;
311
311
312
312
render_effect ( ( ) => {
You can’t perform that action at this time.
0 commit comments