File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
projects/functions/structural-kitchen/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ describe(createKitchen, () => {
6868 ) ;
6969 } ) ;
7070
71- it ( "returns false without changing stock when expense is less than budget on a second call" , ( ) => {
71+ it ( "returns false without changing stock when expense is more than budget on a second call" , ( ) => {
7272 const supplier = jest . fn ( ( expense : number ) => ( {
7373 breads : expense * 1 ,
7474 fruits : expense * 2 ,
@@ -86,7 +86,7 @@ describe(createKitchen, () => {
8686 ) ;
8787 } ) ;
8888
89- it ( "returns false without changing stock when expense is less than budget on a second call" , ( ) => {
89+ it ( "returns true without changing stock when expense is less than budget on a second call" , ( ) => {
9090 const supplier = jest . fn ( ( expense : number ) => ( {
9191 breads : expense * 1 ,
9292 fruits : expense * 2 ,
You can’t perform that action at this time.
0 commit comments