mirror of
				https://github.com/flame-engine/flame.git
				synced 2025-10-31 08:56:01 +08:00 
			
		
		
		
	Adds checking for trailling commas on the project (#670)
* Testing a new linter option for trailling commas * Checking trailling commas on linter
This commit is contained in:
		| @ -87,8 +87,11 @@ void effectTest( | ||||
|     ); | ||||
|   } | ||||
|   expect(effect.hasCompleted(), shouldComplete, reason: "Effect shouldFinish"); | ||||
|   expect(callback.isCalled, shouldComplete, | ||||
|       reason: "Callback was treated wrong"); | ||||
|   expect( | ||||
|     callback.isCalled, | ||||
|     shouldComplete, | ||||
|     reason: "Callback was treated wrong", | ||||
|   ); | ||||
|   game.update(0.0); // Since effects are removed before they are updated | ||||
|   expect(component.effects.isEmpty, shouldComplete); | ||||
| } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Erick
					Erick