본문 바로가기

엉터리 개발 이야기/angular2+

[Angular2+] e2e test debugging

반응형

VS Code 로 해봤습니다.


1
2
3
4
5
6
7
8
9
10
11
12
13
{
    "version": "0.2.0",
    "configurations": [
        {
          "type": "node",
          "request": "launch",
          "name": "Protractor Debugging",
          "program": "${workspaceRoot}/node_modules/protractor/bin/protractor",
          "args": ["${workspaceRoot}/protractor.conf.js"]
        }
    ]
}
 
cs


위와 같이 셋팅해주면 Break Point 걸어서 잘 되네요...


http://www.protractortest.org/#/debugging


참고 사이트

반응형