How to assert object with a field of a given type?
Hi, I'm writing an integration test that needs to assert an object response, where the ID field can be of type string:
The
Is there any way to do this in Deno?
The
expect.any(String) line doesn't work because that syntax is from Jest: https://jestjs.io/docs/expect#expectanyconstructorIs there any way to do this in Deno?
