I would like to run unit test for my custom function in vscode locally, I have installed the package using "flutter pub add dev:test", and created a test file in test/xxx_test.dart, however, i encountered two problems.
the test files will be override after I pull new files from FF server.
if my custom code includes supabase class, the test print out "The test run did not record any output."
Wondering are there any best practices about how can I run custom function locally? thank you!!