using this package.json npm outdated shows 3 missing packages
@material/button MISSING 0.35.0 0.35.0 finfire-button
@material/mwc-button MISSING 0.1.1 0.1.1 finfire-button
@polymer/polymer MISSING 3.0.2 3.0.2 finfire-button
{
"name": "xx-button",
"main": "xx-button.js",
"dependencies": {
"@material/button": "^0.35.0",
"@material/mwc-button": "^0.1.1",
"@polymer/polymer": "^3.0.0"
},
"index": "xx-button.js",
"scripts": {
"test": "polymer test --skip-selenium-install",
"serve": "polymer serve --port 8080 --open"
},
"devDependencies": {
"polymer-cli": "^1.7.1",
"@polymer/iron-demo-helpers": "^3.0.0-pre.12",
"@webcomponents/webcomponentsjs": "^2.0.0",
"wct-browser-legacy": "^1.0.0",
"wct-headless": "^2.2.2",
"wct-istanbub": "^0.1.1"
}
}
WHen running the tests, polymer test succeeds, but hangs afterwards
here is the wct.conf.json
{
"plugins": {
"local": {
"disabled": true
},
"headless": {
"browsers": [
"chrome"
]
}
}
}