Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.

Commit ad5f8c3

Browse files
author
John Messerly
committed
Update README.md
1 parent fc56113 commit ad5f8c3

File tree

1 file changed

+8
-23
lines changed

1 file changed

+8
-23
lines changed

README.md

Lines changed: 8 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
csslib in Pure Dart
2-
===================
1+
CSS parser library for Dart
2+
==========================
33

4-
This is a CSS parser written entirely in [Dart][dart].
4+
This is a [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS) parser written entirely in [Dart][dart].
55
It can be used in the client/server/command line.
66

77
This package is installed with [Pub][pub], see:
@@ -29,30 +29,15 @@ You can pass a String or list of bytes to `parse`.
2929
Running Tests
3030
-------------
3131

32-
All tests (both canary and suite) should be passing. Canary are quick test
33-
verifies that basic CSS is working. The suite tests are a comprehensive set of
34-
~11,000 tests.
35-
36-
```bash
37-
export DART_SDK=path/to/dart/sdk
38-
39-
# Make sure dependencies are installed
40-
pub install
41-
42-
# Run command both canary and the suite tests
43-
test/run.sh
44-
```
45-
46-
Run only the canary test:
47-
32+
Basic tests can be found in this repository:
4833
```bash
49-
test/run.sh canary
34+
pub run test
5035
```
5136

52-
Run only the suite tests:
53-
37+
The full CSS test suite can be found in https://github.com/dart-lang/csslib-test-suite
5438
```bash
55-
test/run.sh suite
39+
cd ../csslib-test-suite
40+
./run.sh
5641
```
5742

5843
[dart]: http://www.dartlang.org/

0 commit comments

Comments
 (0)