import { assertSpyCallArgs } from "https://deno.land/std@0.209.0/testing/mock.ts";
Asserts that an spy is called with a specific range of args as expected. If a start and end index is not provided, the expected will be compared against all args. If a start is provided without an end index, the expected will be compared against all args from the start index to the end. The end index is not included in the range of args that are compared.
Parameters
expected: ExpectedArgs