Skip to content

Commit

Permalink
config updates on EAN13 debug
Browse files Browse the repository at this point in the history
  • Loading branch information
odahcam committed Apr 12, 2021
1 parent 1ef1533 commit 2c4c22c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
22 changes: 13 additions & 9 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,22 @@
{
"type": "node",
"request": "launch",
"name": "EAN 13 Tests",
"program": "${workspaceFolder}/node_modules/mocha-webpack/bin/mocha-webpack",
"name": "EAN 13 Tests - ts-node",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"./src/test/core/oned/Ean13*.spec.ts",
"--colors",
"--require",
"ts-node/register",
"--require",
"tsconfig-paths/register",
"-u",
"tdd",
"--timeout",
"999999",
"--webpack-env",
"dbg",
"--webpack-config",
"webpack.config.test.js"
]
"--colors",
"--recursive",
"./src/test/core/oned/Ean13*.spec.ts"
],
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "node",
Expand Down
3 changes: 1 addition & 2 deletions src/test/core/oned/Ean13BlackBox1.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
* limitations under the License.
*/

import { BarcodeFormat } from '@zxing/library';
import { MultiFormatReader } from '@zxing/library';
import { BarcodeFormat, MultiFormatReader } from '@zxing/library';
import AbstractBlackBoxSpec from '../common/AbstractBlackBox';

/**
Expand Down

0 comments on commit 2c4c22c

Please sign in to comment.