Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
35d91de
Almost finished http status test, added code snippet for index test
fxedel Feb 25, 2017
7e60097
Finished http status test
fxedel Feb 25, 2017
4dd22a0
update Travis config to run both tests
FloEdelmann Feb 25, 2017
524a470
Fixed relative paths
fxedel Feb 25, 2017
ef17901
Merge branch 'add-meaningful-tests' of github.com:FloEdelmann/open-fi…
fxedel Feb 25, 2017
0917901
added color module
fxedel Feb 25, 2017
5758f28
run tests in a build matrix
FloEdelmann Feb 25, 2017
e7203b5
add more 404 tests
FloEdelmann Feb 26, 2017
0f0dad9
Added index test
fxedel Feb 26, 2017
b868294
fix some let/const statements
FloEdelmann Feb 26, 2017
499fe94
and one more let
FloEdelmann Feb 26, 2017
ea44a80
add (incomplete) fixture JSON validate test
FloEdelmann Feb 26, 2017
7fee120
Better console output
fxedel Feb 26, 2017
ab9bb29
just another 404 tests
fxedel Feb 26, 2017
0cc9f6e
add physical check
FloEdelmann Feb 26, 2017
3678709
visual improvements for test results
FloEdelmann Feb 26, 2017
07076f6
add channel testing
FloEdelmann Feb 27, 2017
ecf4a22
fix two fixtures
FloEdelmann Feb 27, 2017
3bcaa88
check manufacturers.json
FloEdelmann Feb 27, 2017
3844802
const / let
FloEdelmann Feb 27, 2017
5a15165
don't exit after every error
FloEdelmann Feb 27, 2017
1163446
improve fixture test's visual output
FloEdelmann Feb 27, 2017
58f379b
outsource isRange check
FloEdelmann Feb 27, 2017
aa62f78
Improved manufacturers index test
fxedel Feb 27, 2017
3ab8c18
Merge branch 'add-meaningful-tests' of github.com:FloEdelmann/open-fi…
fxedel Feb 27, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
language: node_js
node_js:
- "node" # latest
#- "node" # latest
- "6"
- "5"
- "4"
env:
- TESTFILE=tests/fixtures_valid.js
- TESTFILE=tests/http_status.js
- TESTFILE=tests/manufacturers_index_correct.js
script:
- node "$TESTFILE"
cache:
directories:
- node_modules # cache NPM dependencies
- node_modules # cache NPM dependencies
git:
depth: 3 # makes cloning faster
2 changes: 1 addition & 1 deletion fixtures/cameo/thunder-wash-100-rgb.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
{
"range": [193, 255],
"name": "Fade slow-fast",
"color": "Others/rainbow.png"
"image": "Others/rainbow.png"
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/thunder-wash-600-rgb.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
{
"range": [193, 255],
"name": "Fade slow-fast",
"color": "Others/rainbow.png"
"image": "Others/rainbow.png"
}
]
},
Expand Down
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"name": "open-fixture-library",
"version": "0.0.1",
"description": "An open source library for lighting technology's fixture definition files",
"author": "Florian Edelmann <florian-edelmann@online.de>",
"contributors": [
"Felix Edelmann <fxedel@gmail.com>"
],
"engines": {
"node": "6.10.0"
},
Expand All @@ -13,6 +17,11 @@
"ejs": "2.5.6",
"express": "4.14.1"
},
"devDependencies": {
"colors": "^1.1.2",
"valid-url": "1.0.9"
},
"homepage": "http://open-fixture-library.herokuapp.com/",
"repository": {
"type": "git",
"url": "https://github.com/FloEdelmann/open-fixture-library"
Expand All @@ -26,5 +35,5 @@
"lighting",
"qlc"
],
"license": "GPL-3"
}
"license": "GPL-3.0"
}
Loading