StrUtils.js 585 B

123456789101112131415161718192021222324
  1. /**
  2. * StrUtils tests.
  3. *
  4. * @author n1474335 [n1474335@gmail.com]
  5. * @copyright Crown Copyright 2017
  6. * @license Apache-2.0
  7. */
  8. TestRegister.addTests([
  9. {
  10. name: "Regex, non-HTML op",
  11. input: "/<>",
  12. expectedOutput: "/<>",
  13. recipeConfig: [
  14. {
  15. "op": "Regular expression",
  16. "args": ["User defined", "", true, true, false, "Highlight matches"]
  17. },
  18. {
  19. "op": "Remove whitespace",
  20. "args": [true, true, true, true, true, false]
  21. }
  22. ],
  23. },
  24. ]);