-
Notifications
You must be signed in to change notification settings - Fork 59
A space after a comma in the 'commonLib' string in 'test-descriptor.json' causes a fail #206
Comments
@christopherbalz |
Welcome - I realized this happens under an old version ( 0.0.84, I believe), so perhaps it's been fixed by now. But if not, it would be really good to fix. |
Furthermore @pranavparikh, is there any reason it can't be an array of libraries instead of comma separated string? |
@redonkulus , |
@pranavparikh is this the code that needs to change? |
ping @pranavparikh @proverma |
Trimming each element of the array "arrLib" before processing should work. I'll test it out and make the change. |
#233 should fix this issue |
The fix is out with 0.5.3. |
commonLib: "foo.js, bar.js",
fails wherecommonLib: "foo.js,bar.js",
succeeds.However, it is common practice to allow a space in a comma-delimited list, for human readability. The fail is a failure to load the files specified.
commonLib: "foo.js, bar.js",
should succeed.The text was updated successfully, but these errors were encountered: