()
| 42 | return args |
| 43 | |
| 44 | async def test_file_system(): |
| 45 | |
| 46 | input = { |
| 47 | "name": "file_system", |
| 48 | "action": "read", |
| 49 | "input": { |
| 50 | "file_path": assemble_project_path("tests/files/test.txt") |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | res = await ecp(**input) |
| 55 | logger.info(f"| 📝 Action result: {res}") |
| 56 | |
| 57 | async def main(): |
| 58 |
no test coverage detected