We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f998b97 commit 6ec7ae8Copy full SHA for 6ec7ae8
.github/workflows/node.js.yml
@@ -30,5 +30,3 @@ jobs:
30
- run: npm ci
31
32
- run: npm test
33
- env:
34
- W3CAPIKEY: ${{ secrets.W3CAPIKEY }}
test/api.js
@@ -2,12 +2,6 @@ var expect = require("expect.js")
2
, w3c = require("..")
3
;
4
5
-if (!process.env.W3CAPIKEY) {
6
- console.error("No API key has been set, make sure you defined the W3CAPIKEY environment variable.");
7
- process.exit(1);
8
-}
9
-w3c.apiKey = process.env.W3CAPIKEY;
10
-
11
function listChecker (done, title, field = 'title') {
12
return function (err, data) {
13
expect(err).to.not.be.ok();
0 commit comments