BestNotes/test/specs/base/common.js

17 lines
865 B
JavaScript
Raw Normal View History

2019-11-29 22:16:18 +01:00
class Common {
constructor() {
2019-12-08 22:46:26 +01:00
this.titleNote = "Tytuł: "
2020-01-18 14:07:04 +01:00
this.loremIpsum = 'Nowy program Va Banque w TV';
2019-11-29 22:16:18 +01:00
this.ecceIpsum = 'Snare hope zarathustra pious society. Ascetic ocean snare chaos endless war ultimate insofar right god spirit. Right free pinnacle philosophy overcome self philosophy. Right passion value dead truth faithful deceptions. Marvelous hatred derive superiority deceptions justice overcome oneself zarathustra gains.';
this.bestNotesLink = 'http://bestnotes.pythonanywhere.com/bestnotes/';
2019-11-29 22:51:45 +01:00
this.errorLoginMessage = 'Nieprawidłowy adres e-mail lub hasło. Spróbuj ponownie!';
2019-12-08 22:46:26 +01:00
this.testName = 'test';
this.correctName = 'admin';
2020-01-18 18:30:46 +01:00
this.noteName = `${Date.now()}`;
this.subject = 'Testy automatyczne';
this.topic = 'Testy';
2019-11-29 22:16:18 +01:00
}
}
module.exports = new Common();