testLab.ResultStorage interface

テスト結果が保存される場所。

サイン:

export interface ResultStorage 

プロパティ

財産タイプ説明
gcsパステスト結果が書き込まれる Google Cloud Storage 内の場所。 「gs://bucket/path/to/somewhere」という形式です。
結果ウリFirebase Web コンソールのテスト結果への URI。
ツール結果実行テスト結果を含むツール結果実行リソース。形式はprojects/{project_id}/histories/{history_id}/executions/{execution_id}です。オプションで、誤ったテスト状態では省略できます。詳細については、https://firebase.google.com/docs/test-lab/reference/toolresults/rest を参照してください。
ツール結果履歴テスト結果を含むツール結果履歴リソース。形式は、 projects/{project_id}/histories/{history_id}です。詳細については、https://firebase.google.com/docs/test-lab/reference/toolresults/rest を参照してください。

testLab.ResultStorage.gcsPath

テスト結果が書き込まれる Google Cloud Storage 内の場所。 「gs://bucket/path/to/somewhere」という形式です。

サイン:

gcsPath: string;

testLab.ResultStorage.resultsUri

Firebase Web コンソールのテスト結果への URI。

サイン:

resultsUri: string;

testLab.ResultStorage.toolResultsExecution

テスト結果を含むツール結果実行リソース。形式はprojects/{project_id}/histories/{history_id}/executions/{execution_id}です。 。オプションで、誤ったテスト状態では省略できます。詳細については、https://firebase.google.com/docs/test-lab/reference/toolresults/rest を参照してください。

サイン:

toolResultsExecution: string;

testLab.ResultStorage.toolResultsHistory

テスト結果を含むツール結果履歴リソース。形式はprojects/{project_id}/histories/{history_id}です。 。詳細については、https://firebase.google.com/docs/test-lab/reference/toolresults/rest を参照してください。

サイン:

toolResultsHistory: string;