05_toolbar_test.js 524 B

1234567891011121314151617181920212223242526272829
  1. let test_utils = require('./test_utils');
  2. let user = "./users/testuser/";
  3. module.exports = {
  4. beforeEach: function (client) {
  5. client.url('http://localhost:8124/atompm').pause(300);
  6. },
  7. 'Login': function (client) {
  8. test_utils.login(client);
  9. },
  10. 'Load main menu toolbar': function (client) {
  11. let filename = 'Toolbars/MainMenu/MainMenu.buttons.model';
  12. test_utils.load_toolbar(client, [filename]);
  13. },
  14. after: function (client) {
  15. client.end();
  16. },
  17. };