https://github.com/numtel/css-unit-test
CSS Unit Test Application (made with Meteor)
https://github.com/numtel/css-unit-test
Last synced: 7 months ago
JSON representation
CSS Unit Test Application (made with Meteor)
- Host: GitHub
- URL: https://github.com/numtel/css-unit-test
- Owner: numtel
- License: mit
- Created: 2014-08-31T08:03:50.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-10-03T04:41:51.000Z (over 11 years ago)
- Last Synced: 2025-02-15T04:42:38.794Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://steeztest.me
- Size: 668 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [SteezTest.me CSS Unit Testing](http://steeztest.me/)
Use the application without local installation at http://steeztest.me/
### Installation
1. Install Meteor: https://www.meteor.com/
2. Run `meteor` from application directory
3. Browse to `http://localhost:3000/` (or chosen port)
### Running Source Code Tests
On Ubunbtu and Debian systems, from application root directory, run script:
./private/tests/main.js
On others that don't use `nodejs` instead of `node`:
node ./private/tests/main
On first test run, the Fibers module used may need to be updated to your configuration.
If you see an error like this:
Error: `/home/ben/meteor/css-test/private/tests/node_modules/fibers/bin/linux-x64-v8-3.14/fibers.node` is missing. Try reinstalling `node-fibers`?
You should be able to run the following commands to fix this: (change the directory from `linux-x64-v8-3.14` to match your error)
cd private/tests/node_modules/fibers
node-gyp rebuild
mkdir bin/linux-x64-v8-3.14
cp build/Release/fibers.node bin/linux-x64-v8-3.14/