users.js 601 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Configuration for test users
  2. const users = [
  3. {
  4. login: 'Admin',
  5. password: '11111111',
  6. actions: [
  7. {
  8. firstParagraph: 0,
  9. lastParagraph: 0,
  10. start: 7,
  11. end: 7,
  12. text: 'АВТОМОБИЛЬ',
  13. keyInterval: 1100
  14. }
  15. ]
  16. },
  17. {
  18. login: 'Admin',
  19. password: '11111111',
  20. actions: [
  21. {
  22. firstParagraph: 0,
  23. lastParagraph: 0,
  24. start: 9,
  25. end: 9,
  26. text: 'трактор',
  27. keyInterval: 1100
  28. }
  29. ]
  30. }
  31. ];
  32. // Test document configuration
  33. const testDocument = {
  34. url: 'http://localhost:9080/debug.html#ZCZ1EW'
  35. };
  36. module.exports = {
  37. users,
  38. testDocument
  39. };