diff options
author | 杨宇千 <crupest@outlook.com> | 2019-02-21 16:32:16 +0000 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-02-21 16:32:16 +0000 |
commit | 5452ada657b7a3a4b2a91563a5ff03dcb798c684 (patch) | |
tree | 0f90f9a078e1db147a65b96a3c28a8ea2fe15c9e /Timeline/ClientApp/.vscode | |
parent | 86a1d2977ac15adc863f087b0e84890f460dc748 (diff) | |
parent | 57f88746769432ed2d529a4f050783d84f9fb2bc (diff) | |
download | timeline-5452ada657b7a3a4b2a91563a5ff03dcb798c684.tar.gz timeline-5452ada657b7a3a4b2a91563a5ff03dcb798c684.tar.bz2 timeline-5452ada657b7a3a4b2a91563a5ff03dcb798c684.zip |
Merged PR 3: Add unit test for front side.
Related work items: #1
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}" + } ] } |