我有一个定制的聚合物元素,它在其属性中创建了另一个聚合物元素。代码是这样的:
Polymer({
is: 'pg-create-ad-new',
properties:{
creative: {
type: "String"
},
storyId: {
type: "String",
value: ()=>{
var storyIdRegEx = /.*(storyId=(.+))/i,
storyId = '';
var context = document.createElement('page-router').getContext();
var matches = storyIdRegEx.exec(context.querystring);
if(matches){
storyId = matches[2];
}
return storyId;
}
}
},
现在我正在尝试用 WCT 测试这个页面。相同的代码:
<test-fixture id="createNewFixture">
<template>
<pg-create-ad-new>
</pg-create-ad-new>
</template>
</test-fixture>
而且我有一个非常基本的对应测试用例。但是,所有测试都失败并出现以下错误:
测试失败:在测试函数之外抛出错误:无法读取未定义的属性“查询字符串”
我在哪里/到底做错了什么?无法定位。请帮忙!