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

TestCaseFilter

import type { TestCaseFilter } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";

A filter used to return specific types of test cases. In order to pass the filter, the report must meet all of the filter properties.

interface TestCaseFilter {
keyword?: string | null;
status?: string | null;
}

§Properties

§
keyword?: string | null
[src]

A keyword that is used to filter on the name or the prefix of the test cases. Only test cases where the keyword is a substring of the name or the prefix will be returned.

§
status?: string | null
[src]

The status used to filter test cases. A TestCaseFilter can have one status. Valid values are:

  • SUCCEEDED
    
  • FAILED
    
  • ERROR
    
  • SKIPPED
    
  • UNKNOWN