Skip to content

Commit

Permalink
bypass broken api key call
Browse files Browse the repository at this point in the history
  • Loading branch information
a2937 committed Oct 22, 2024
1 parent 5788449 commit b2bef65
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion apps/twitch-proxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "fCC Twitch API passthrough server",
"main": "server.js",
"scripts": {
"prestart": "node kill-node-process-cron.js & node update-api-key.mjs",
"prestart": "node kill-node-process-cron.js",
"start": "node server.js"
},
"dependencies": {
Expand Down
3 changes: 0 additions & 3 deletions test/twitch-proxy.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ describe('helix api', () => {
expect(response.status).toBe(200);
// eslint-disable-next-line no-undef
const result = response.data;
console.log(result);
expect(result.data).toHaveLength(1);
});

Expand All @@ -23,7 +22,6 @@ describe('helix api', () => {
);
expect(response.status).toBe(200);
const result = response.data;
console.log(result);
expect(result.data).toHaveLength(1);
});

Expand All @@ -33,7 +31,6 @@ describe('helix api', () => {
);
expect(response.status).toBe(200);
const result = response.data;
console.log(result);
expect(result.data).toHaveLength(1);
});
});
Expand Down

0 comments on commit b2bef65

Please sign in to comment.