Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EnvironmentVariable

import type { EnvironmentVariable } from "https://googleapis.deno.dev/v1/testing:v1.ts";

A key-value pair passed as an environment variable to the test.

interface EnvironmentVariable {
key?: string;
value?: string;
}

§Properties

§
key?: string
[src]

Key for the environment variable.

§
value?: string
[src]

Value for the environment variable.