Skip to content

Instantly share code, notes, and snippets.

@sebs
Last active May 11, 2018 15:25
Show Gist options
  • Save sebs/186c69418869c57d93a13ea574e05923 to your computer and use it in GitHub Desktop.
Save sebs/186c69418869c57d93a13ea574e05923 to your computer and use it in GitHub Desktop.

NPM outdated

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"
  }
}

polymer-test hangs

WHen running the tests, polymer test succeeds, but hangs afterwards

here is the wct.conf.json


{
  "plugins": {
    "local": {
      "disabled": true
    },
    "headless": {
      "browsers": [
        "chrome"
      ]
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment