| | |
| | | }); |
| | | |
| | | casper.test.begin('Translation engine', 2, function(test) { |
| | | casper.start('http://127.0.0.1:8080/#!pl', function() { |
| | | test.assertTitleMatches(/odjazdy/i, 'Page title: ...odjazdy...'); |
| | | casper.start('http://127.0.0.1:8080/#!en', function() { |
| | | test.assertTitleMatches(/departures/i, 'Page title: ...departures...'); |
| | | }); |
| | | |
| | | casper.wait(200, function() { |
| | | test.assertSelectorHasText( |
| | | '[data-translate=header_lines]', |
| | | 'Linie', |
| | | 'Translation: Lines -> Linie' |
| | | '[data-translate=header_line]', |
| | | 'Line', |
| | | 'Translation: Linia -> Line' |
| | | ); |
| | | }); |
| | | |