From fb8c18798c8acf48de7f27d87ec7eadc7ae1178b Mon Sep 17 00:00:00 2001 From: Joseph Izang Date: Tue, 2 May 2023 18:29:59 +0100 Subject: [PATCH] add sol2uml test skeleton --- apps/remix-ide-e2e/nightwatch.ts | 2 +- apps/remix-ide-e2e/src/tests/sol2uml.test.ts | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 apps/remix-ide-e2e/src/tests/sol2uml.test.ts diff --git a/apps/remix-ide-e2e/nightwatch.ts b/apps/remix-ide-e2e/nightwatch.ts index 3f59c1549e..25fdaaaa5b 100644 --- a/apps/remix-ide-e2e/nightwatch.ts +++ b/apps/remix-ide-e2e/nightwatch.ts @@ -1,7 +1,7 @@ module.exports = { src_folders: ['dist/apps/remix-ide-e2e/src/tests'], output_folder: './reports/tests', - custom_commands_path: ['dist/apps/remix-ide-e2e/src/commands'], + custom_commands_path: ['dist/apps/remix-ide-e 2e/src/commands'], custom_assertions_path: '', page_objects_path: '', globals_path: '', diff --git a/apps/remix-ide-e2e/src/tests/sol2uml.test.ts b/apps/remix-ide-e2e/src/tests/sol2uml.test.ts new file mode 100644 index 0000000000..4706a1f68b --- /dev/null +++ b/apps/remix-ide-e2e/src/tests/sol2uml.test.ts @@ -0,0 +1,9 @@ +'use strict' +import { NightwatchBrowser } from 'nightwatch' +import init from '../helpers/init' + +module.exports = { + before: function (browser: NightwatchBrowser, done: VoidFunction) { + init(browser, done) + } +} \ No newline at end of file