Maintenance: Fix QUnit tests.
This commit is contained in:
parent
4d245ce1de
commit
c3c8db139c
2 changed files with 2 additions and 2 deletions
|
@ -126,7 +126,7 @@ QUnit.test('i18n', assert => {
|
||||||
assert.equal(translated, 'some link <a href="http://lalala" target="_blank">to what ever</a>', 'de-de - link')
|
assert.equal(translated, 'some link <a href="http://lalala" target="_blank">to what ever</a>', 'de-de - link')
|
||||||
|
|
||||||
translated = App.i18n.translateContent('Enables user authentication via %s. Register your app first at [%s](%s).', 'XXX', 'YYY', 'http://lalala')
|
translated = App.i18n.translateContent('Enables user authentication via %s. Register your app first at [%s](%s).', 'XXX', 'YYY', 'http://lalala')
|
||||||
assert.equal(translated, 'Aktivieren der Benutzeranmeldung über XXX. Registriere Deine Anwendung zuerst über <a href="http://lalala" target="_blank">YYY</a>.', 'en-us - link')
|
assert.equal(translated, 'Aktivieren der Benutzeranmeldung über XXX. Registrieren Sie Ihre Anwendung zuerst über <a href="http://lalala" target="_blank">YYY</a>.', 'en-us - link')
|
||||||
|
|
||||||
var time_local = new Date();
|
var time_local = new Date();
|
||||||
var offset = time_local.getTimezoneOffset();
|
var offset = time_local.getTimezoneOffset();
|
||||||
|
|
|
@ -758,7 +758,7 @@ QUnit.test('table test 5', assert => {
|
||||||
|
|
||||||
assert.equal(el.find('table > thead > tr').length, 1, 'row count')
|
assert.equal(el.find('table > thead > tr').length, 1, 'row count')
|
||||||
assert.equal(el.find('table > thead > tr > th:nth-child(1)').text().trim(), 'Name', 'check header')
|
assert.equal(el.find('table > thead > tr > th:nth-child(1)').text().trim(), 'Name', 'check header')
|
||||||
assert.equal(el.find('table > thead > tr > th:nth-child(2)').text().trim(), 'Data', 'check header')
|
assert.equal(el.find('table > thead > tr > th:nth-child(2)').text().trim(), 'Daten', 'check header')
|
||||||
assert.equal(el.find('table > thead > tr > th:nth-child(3)').text().trim(), 'Aktiv', 'check header')
|
assert.equal(el.find('table > thead > tr > th:nth-child(3)').text().trim(), 'Aktiv', 'check header')
|
||||||
assert.equal(el.find('tbody > tr:nth-child(1) > td').length, 3, 'check row 1')
|
assert.equal(el.find('tbody > tr:nth-child(1) > td').length, 3, 'check row 1')
|
||||||
assert.equal(el.find('tbody > tr:nth-child(1) > td:first').text().trim(), 'some name 1', 'check row 1')
|
assert.equal(el.find('tbody > tr:nth-child(1) > td:first').text().trim(), 'some name 1', 'check row 1')
|
||||||
|
|
Loading…
Reference in a new issue