30 lines
1.4 KiB
JavaScript
30 lines
1.4 KiB
JavaScript
/**
|
|
* Here is a brief list with the known issues.
|
|
*
|
|
* Jasmine 2.3.0: there is a bug that makes Jasmine to exit and kill the
|
|
* process. This is solved in the 2.3.1 version. @see
|
|
* https://github.com/jasmine/jasmine-npm/blob/master/release_notes/2.3.1.md
|
|
*
|
|
* Jasmine 2.5.0: it is the same bug as in the 2.3.0 version. @see
|
|
* https://github.com/jasmine/jasmine-npm/issues/88
|
|
*
|
|
* Mocha 2.5.0: is not working because of a missing dependency, this is Mocha's
|
|
* fault @see
|
|
* https://github.com/mochajs/mocha/blob/master/CHANGELOG.md#251--2016-05-23.
|
|
*/
|
|
|
|
module.exports = {
|
|
'qunitjs': ['1.9.0', '1.10.0', '1.11.0', '1.12.0-pre', '1.12.0', '1.13.0',
|
|
'1.14.0', '1.15.0', '1.16.0', '1.17.0', '1.17.1', '1.18.0', '1.19.0'],
|
|
'jasmine': ['2.3.0', '2.5.0'],
|
|
'mocha': ['0.3.0', '0.3.1', '0.3.2', '0.3.3', '0.3.4', '0.3.6', '0.4.0',
|
|
'0.5.0', '0.6.0', '0.7.0', '0.7.1', '0.8.0', '0.9.0', '0.10.0', '0.10.1',
|
|
'0.10.2', '0.11.0', '0.12.0', '0.12.1', '0.13.0', '0.14.0', '0.14.1',
|
|
'1.0.0', '1.0.1', '1.0.2', '1.0.3', '1.1.0', '1.2.0', '1.2.1', '1.2.2',
|
|
'1.3.0', '1.3.1', '1.3.2', '1.4.0', '1.4.1', '1.4.2', '1.4.3', '1.5.0',
|
|
'1.6.0', '1.7.0', '1.7.1', '1.7.2', '1.7.3', '1.7.4', '1.8.0', '1.8.1',
|
|
'1.8.2', '1.9.0', '1.10.0', '1.11.0', '1.12.0', '1.12.1', '1.13.0',
|
|
'1.14.0', '1.15.0', '1.15.1', '1.16.0', '1.16.1', '1.16.2', '1.17.0',
|
|
'1.17.1', '2.1.0', '2.5.0']
|
|
}
|