| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // Configuration for test users
- const users = [
- {
- login: 'Admin',
- password: '11111111',
- actions: [
- {
- firstParagraph: 0,
- lastParagraph: 0,
- start: 7,
- end: 7,
- text: 'АВТОМОБИЛЬ',
- keyInterval: 1100
- }
- ]
- },
- {
- login: 'Admin',
- password: '11111111',
- actions: [
- {
- firstParagraph: 0,
- lastParagraph: 0,
- start: 9,
- end: 9,
- text: 'трактор',
- keyInterval: 1100
- }
- ]
- }
- ];
- // Test document configuration
- const testDocument = {
- url: 'http://localhost:9080/debug.html#ZCZ1EW'
- };
- module.exports = {
- users,
- testDocument
- };
|