function assertNotEqualsimport { assertNotEquals } from "https://dotland.deno.dev/std@0.36.0/testing/asserts.ts"; assertNotEquals(actual: unknown,expected: unknown,msg?: string,): voidMake an assertion that actual and expected are not equal, deeply. If not then throw. Parametersactual: unknownexpected: unknownoptionalmsg: stringReturnsvoid