我正在使用Runscope provider for Terraform来构建Runscope测试以监视我的API。我希望测试的第一步引用另一个Runscope存储桶中的Okta测试,并抓取// models/pictures.js
export = picture;
// endpoint.js
import picture from '../models/pictures';
以便在后续步骤中使用。
通常,我指定当前测试的access_token
和bucket_id
,以确定该步骤属于哪个测试:
test_id
但是,通过 bucket_id = "${runscope_bucket.main.id}"
test_id = "${runscope_test.api.id}"
step_type = "request"
步骤,我还需要以某种方式引用另一个存储桶并进行测试。
使用subtest
进行测试时,要引用Okta存储桶和测试ID的步骤有哪些设置?