]> source.dussan.org Git - vaadin-core.git/commitdiff
Update README.md
authorJouni Koivuviita <jouni@jouni.me>
Tue, 2 Feb 2016 12:57:20 +0000 (14:57 +0200)
committerJouni Koivuviita <jouni@jouni.me>
Tue, 2 Feb 2016 12:57:20 +0000 (14:57 +0200)
README.md

index 96a7bc94c585e1aad4ec3f38d806c1497ff1c05f..f650b8eb3f13d6d5f2e06a0258e405e90798a7d0 100644 (file)
--- a/README.md
+++ b/README.md
@@ -23,20 +23,20 @@ Individual elements of the Core Elements bundle are released separately, and you
 You can see more detailed roadmaps of each element from their respective GitHub repositories.
 
 #### Version 0.4
-- `<vaadin-combo-box>` 1.0
-- `<vaadin-icons>` 1.0
+- [`<vaadin-combo-box>`](https://github.com/vaadin/vaadin-combo-box) 1.0
+- [`<vaadin-icons>`](https://github.com/vaadin/vaadin-icons) 1.0
 
 #### Version 0.5
-- `<vaadin-date-picker>` 1.0
-- `<vaadin-grid>` 1.1
+- [`<vaadin-date-picker>`](https://github.com/vaadin/vaadin-date-picker) 1.0
+- [`<vaadin-grid>`](https://github.com/vaadin/vaadin-grid) 1.1
 
 #### Version 1.0
-  - `<vaadin-upload>` 1.0
+  - [`<vaadin-upload>`](https://github.com/vaadin/vaadin-upload) 1.0
 
 #### Version 1.1
-- `<vaadin-grid>` 1.2
-- `<vaadin-combo-box>` 1.1
-- `<vaadin-date-picker>` 1.1
+- [`<vaadin-grid>`](https://github.com/vaadin/vaadin-grid) 1.2
+- [`<vaadin-combo-box>`](https://github.com/vaadin/vaadin-combo-box) 1.1
+- [`<vaadin-date-picker>`](https://github.com/vaadin/vaadin-date-picker) 1.1
 
 ##### Version labels
 
@@ -86,20 +86,20 @@ The following instructions are common for all Vaadin core elements. **Replace `v
 
 Clone the element project from GitHub:
 
-```
+```shell
 $ git clone https://github.com/vaadin/vaadin-combo-box.git
 ```
 
 ### Running demos
 
 Install [polyserve](https://github.com/PolymerLabs/polyserve) using [npm](https://npmjs.org):
-```
+```shell
 $ npm install -g polyserve
 ```
 
 Start a local server in the project root directory:
 
-```
+```shell
 $ cd vaadin-combo-box
 $ polyserve
 ```
@@ -111,17 +111,23 @@ Open the following URLs in your browser:
 ### Running tests
 
 Install [Web Component Tester](https://github.com/Polymer/web-component-tester) using [npm](https://npmjs.org):
-```
+```shell
 $ npm install -g web-component-tester
 ```
 
 Tests for each individual element can be run with the  task from the element directory:
 
-```
+```shell
 $ cd vaadin-combo-box
 $ wct
 ```
 
+You can also run and debug tests manually:
+```shell
+$ polyserve
+```
+- Open http://localhost:8080/components/vaadin-combo-box/test/ in your browser.
+
 You should include new tests in your pull requests if you add features to the elements or if you are fixing a bug.
 
 ### Documentation