separators.js (493B)
1 /** 2 * AUTO-GENERATED - DO NOT EDIT. Source: https://github.com/gpuweb/cts 3 **/ /** Separator between big parts: suite:file:test:case */export const kBigSeparator = ':'; 4 /** Separator between path,to,file or path,to,test */ 5 export const kPathSeparator = ','; 6 7 /** Separator between k=v;k=v */ 8 export const kParamSeparator = ';'; 9 10 /** Separator between key and value in k=v */ 11 export const kParamKVSeparator = '='; 12 13 /** Final wildcard, if query is not single-case */ 14 export const kWildcard = '*';