mirror of
https://git.proxmox.com/git/mirror_xterm.js
synced 2025-11-07 12:58:09 +00:00
selecting sucessful tests
This commit is contained in:
parent
36930e9661
commit
dc5b525559
@ -70,8 +70,14 @@ describe('Escape code files', function() {
|
|||||||
// omit stack trace for escape sequence files
|
// omit stack trace for escape sequence files
|
||||||
Error.stackTraceLimit = 0;
|
Error.stackTraceLimit = 0;
|
||||||
var files = glob.sync('test/escape_sequence_files/*.in');
|
var files = glob.sync('test/escape_sequence_files/*.in');
|
||||||
|
// comment/uncomment one of the following
|
||||||
|
// only sucessful tests
|
||||||
|
var successful = [0, 2, 6, 12, 13, 18, 20, 22, 27, 28];
|
||||||
|
for (var a in successful) {
|
||||||
|
var i = successful[a];
|
||||||
// first 44 are the most basic escape sequences
|
// first 44 are the most basic escape sequences
|
||||||
for (var i=0; i<44; ++i) {
|
//for (var i=0; i<44; ++i) {
|
||||||
|
// all tests
|
||||||
//for (var i=0; i<files.length; ++i) {
|
//for (var i=0; i<files.length; ++i) {
|
||||||
(function(filename){
|
(function(filename){
|
||||||
it(filename.split('/').slice(-1)[0], function () {
|
it(filename.split('/').slice(-1)[0], function () {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user