2

我正在尝试测试一个 Web 组件。这是我的项目结构:

├── package.json
├── src
│   ├── app.js
│   └── index.html
└── test
    └── hello-world-test.html

这是我的工作代码:

class HelloWorld extends HTMLElement {
    connectedCallback () {
      this.innerHTML = 'Hello, World!'
    }
}
customElements.define('hello-world', HelloWorld);
<!doctype html>
<html>

<head>
    <meta charset="utf-8">
    <script src="app.js"></script>
</head>

<body>
    <hello-world></hello-world>
</body>

</html>

我正在尝试使用web-component-tester. 我在全球范围内安装了该实用程序:

npm install -g web-component-tester

我在package.json文件中声明了它:

"devDependencies": {
    "web-component-tester": "^6.9.0"
}

然后,我在文件夹中编写了我的测试test并将其保存到hello-world-test.html

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <script src="../node_modules/web-component-tester/browser.js"></script>
    <script src="app.js"></script>
</head>
<body>
    <test-fixture id="hello-world-fixture">
            <hello-world></hello-world>
    </test-fixture>
    <script>
        suite('<hello-world>', function(){
            let component = document.querySelector('hello-world');

            test('contains hello world string ?', () => {
                let index = component.innerText.indexOf('Hello');
                assert.isAtLeast(index, 0);
            });
        });
    </script>
</body>
</html>

最后,我输入:

wct --npm

然后在 Chrome 中得到以下错误:

这是 Chrome 中的结果

我缺少什么来正确运行测试?我发现的唯一体面的材料是这个那个,但它们已经过时了。

4

2 回答 2

1

Zakaria 的回答很好,但我建议放弃 wct-browser-legacy 转而使用 wct-mocha,因为它重量更轻,并且没有像旧版本的 lodash 和 sinon 等过时的依赖项。

有关完整详细信息,请参阅自述文件:https ://www.npmjs.com/package/wct-mocha

tl;博士版本:

$ npm rm --save wct-browser-legacy
$ npm install --save-dev \
  @webcomponents/webcomponentsjs \
  @polymer/test-fixture \
  wct-mocha \
  mocha \
  chai

不需要指定它,但如果您有 wct.conf.js 文件,您应该将现有的 wctPackageName 条目更改为:

wctPackageName: "wct-mocha"

您的 HTML 需要稍作更改,并且您需要确保 mocha 是直接依赖项,因为 wct-mocha 不会自动加载。如果您使用 chai 断言并且@polymer/test-fixture使用这些断言,您还需要使用 chai 执行此操作。

<head>
  <meta charset="utf-8">
  <script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script> 
  <script src="../node_modules/mocha/mocha.js"></script> 
  <script src="../node_modules/chai/chai.js"></script> 
  <script src="../node_modules/@polymer/test-fixture/test-fixture.js"></script> 
  <script src="../node_modules/wct-mocha/wct-mocha.js"></script> 
</head>
于 2019-02-25T19:23:52.493 回答
1

有很多错误:

  • 首先,请阅读最后一段中的整个文档,很明显,对于那些使用您的人来说,npm您需要通过以下方式获得额外的依赖wctPackageName

希望支持基于 npm 安装的组件应在其 devDependencies 中包含 wct-browser-legacy,这是一个仅包含在基于 npm 的环境中执行 WCT 测试所需的客户端 JavaScript 的包。WCT 将尝试通过按以下优先顺序检查兼容包来识别哪个包提供客户端代码:wct-mocha、wct-browser-legacy 和 web-component-tester。如果要指定哪个包提供 WCT 客户端代码,请使用 wct.conf.json 中的 --wct-package-name 标志或 wctPackageName 选项和 npm 包名称。

所以你需要wct-browser-legacy在你的devDependencies

  • 给出您的项目结构,您就app.js好像它处于同一级别一样。应该是../src/app.js
  • 您应该添加type="module"到该导入
  • 您声明了一个夹具,但没有通过该函数获利fixture

如果我必须更正您的代码:

  • 命令应该是wct --npm -wct-package-name=wct-browser-legacy. 或者更好地创建一个wct.conf.js包含以下信息的文件:

module.exports = {
    npm:true,
    verbose: true,
    plugins: {
        local: {
            browsers: ["chrome"]
        }
    },
    wctPackageName: "wct-browser-legacy"
};

  • 您的测试应修改如下:

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <script src="../node_modules/web-component-tester/browser.js"></script>
    <script src="../src/app.js"></script>
</head>
<body>
    <test-fixture id="helloWorldFixture">
        <template>
            <hello-world>
            </hello-world>
        </template>
    </test-fixture>
    <script>
        suite('<hello-world>', () => {
            let component;
            setup(() => {
                component = fixture('helloWorldFixture');
            });

            test('contains hello world string ?', () => {
                let index = component.innerText.indexOf('Hello');
                assert.isAtLeast(index, 0);
            });
        });
    </script>
</body>
</html>

请注意,我使用了夹具的 id 并将组件初始化放入setup函数中。

于 2018-11-25T17:32:39.003 回答