diff options
author | crupest <crupest@outlook.com> | 2019-02-21 23:36:41 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-21 23:36:41 +0800 |
commit | 6ec22ee0cbf36fc85e73f6f962eafe7120a64488 (patch) | |
tree | f534b8d4a158eed94a26c66562aea7b075a7b282 /Timeline/ClientApp/.vscode | |
parent | 2bcdc32c4c6d37a6d40aa4fdfc7b04478a76e961 (diff) | |
download | timeline-6ec22ee0cbf36fc85e73f6f962eafe7120a64488.tar.gz timeline-6ec22ee0cbf36fc85e73f6f962eafe7120a64488.tar.bz2 timeline-6ec22ee0cbf36fc85e73f6f962eafe7120a64488.zip |
Add unit test.
Diffstat (limited to 'Timeline/ClientApp/.vscode')
-rw-r--r-- | Timeline/ClientApp/.vscode/launch.json | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Timeline/ClientApp/.vscode/launch.json b/Timeline/ClientApp/.vscode/launch.json index 5b749430..96a3c552 100644 --- a/Timeline/ClientApp/.vscode/launch.json +++ b/Timeline/ClientApp/.vscode/launch.json @@ -7,9 +7,16 @@ { "type": "chrome", "request": "launch", - "name": "Launch Chrome against localhost", + "name": "Launch app", "url": "https://localhost:5001", "webRoot": "${workspaceFolder}" - } + }, + { + "type": "chrome", + "request": "launch", + "name": "Launch test", + "url": "http://localhost:9876", + "webRoot": "${workspaceFolder}" + } ] } |