Жасмин Test Explorer показывает машинописные тесты Жасмин в VS Code - PullRequest
0 голосов
/ 08 января 2020

enter image description here Я использую Jasmine Test Explorer для angular машинописи. Когда мы создаем компонент angular, также создаются * spe c .ts, поэтому файлы spe c .ts разбросаны по всему проекту. мое значение spec_dir правильное? Также дайте мне знать, что мне не хватает?

Ниже - Жасмин. json

    {
    "spec_dir": "${workspaceFolder}/angularProject/src/app",
    "spec_files": [
        "**/*[sS]pec.ts"
    ],
    "helpers": [
        "helpers/**/*.ts"
    ],
    "stopSpecOnExpectationFailure": false,
    "random": true
}


Ниже приведены настройки. json



{
    "typescript.updateImportsOnFileMove.enabled": "always",
    "gitlens.views.repositories.branches.layout": "list",
    "editor.formatOnSave": true,
    "editor.formatOnPaste": true,
    "jasmineExplorer.cwd": "test",
    "jasmineExplorer.logfile": "jasminexplorer.log",
    "jasmineExplorer.logpanel": true,
    "jasmineExplorer.config": "${workspaceFolder}/angularProject/spec/support/jasmine.json"
}

...