Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
fixed bugs and added test cases
Browse files Browse the repository at this point in the history
- fixed cheerio selector bug on legendastv.js
- fixed guessit chooseBest not considering entries with multiple groups, reduced screen_size score and added streaming_service field with 1 score
  • Loading branch information
Uilton Oliveira committed Apr 25, 2021
1 parent beff406 commit 0530ce8
Show file tree
Hide file tree
Showing 9 changed files with 12,350 additions and 1,274 deletions.
30 changes: 30 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"name": "vscode-jest-tests",
"request": "launch",
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
"args": [
"--runInBand"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true
},
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\bin\\www"
}
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"jest.debugMode": true
}
8 changes: 8 additions & 0 deletions docker-compose.test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: '3.8'

services:
guessit_rest:
image: guessit/guessit-rest:latest
restart: unless-stopped
ports:
- 5000:80
Loading

0 comments on commit 0530ce8

Please sign in to comment.