Commit 4d61bcc8 4d61bcc801f9a8760b6b29990f8356951069f89c by Vincent Peybernes

Add helpful id on test data for debugging.

1 parent 7b274617
Pipeline #9 for 4d61bcc8 passed in 3 minutes 32 seconds
......@@ -17,6 +17,7 @@ describe('RelativePlacement algo', () => {
* @param {Number} id
*/
(testData,id) => {
testData.id = id;
it('#'+id+': '+(testData.comment||''), ()=>{
var votes = compileVotes(testData);
......@@ -33,6 +34,7 @@ describe('RelativePlacement algo', () => {
/**
* @name TestData
* @typedef Object
* @property {Number} id
* @property {String} comment
* @property {Array[]}votes
* @property {String[]} result
......