Compare commits

...

No commits in common. "BES-56" and "master" have entirely different histories.

2639 changed files with 512 additions and 126 deletions

2
.gitignore vendored
View File

@ -1,4 +1,5 @@
/node_modules/ /node_modules/
/test/allure-results/
/test/allure-results/*.xml /test/allure-results/*.xml
/test/allure-results/*.png /test/allure-results/*.png
/test/allure-results/*.log /test/allure-results/*.log
@ -6,6 +7,7 @@
/test/allure-results/*.mp4 /test/allure-results/*.mp4
/test/screenshots/*.png /test/screenshots/*.png
/allure-report/ /allure-report/
/_results_/
# Created by https://www.gitignore.io # Created by https://www.gitignore.io

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@ -1,7 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="b23c009e-2f8a-48f7-8b29-023f93596932" name="Default Changelist" comment="" /> <list default="true" id="b23c009e-2f8a-48f7-8b29-023f93596932" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
</list>
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" /> <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -29,8 +31,8 @@
<component name="PropertiesComponent"> <component name="PropertiesComponent">
<property name="DefaultHtmlFileTemplate" value="HTML File" /> <property name="DefaultHtmlFileTemplate" value="HTML File" />
<property name="SHARE_PROJECT_CONFIGURATION_FILES" value="true" /> <property name="SHARE_PROJECT_CONFIGURATION_FILES" value="true" />
<property name="last_opened_file_path" value="$PROJECT_DIR$" /> <property name="last_opened_file_path" value="$PROJECT_DIR$/../../../TAU/TAU_34/wmt_2017_git_master" />
<property name="settings.editor.selected.configurable" value="project.propVCSSupport.Mappings" /> <property name="settings.editor.selected.configurable" value="preferences.general" />
</component> </component>
<component name="RunDashboard"> <component name="RunDashboard">
<option name="ruleStates"> <option name="ruleStates">
@ -91,9 +93,4 @@
</map> </map>
</option> </option>
</component> </component>
<component name="VcsManagerConfiguration">
<ignored-roots>
<path value="$PROJECT_DIR$" />
</ignored-roots>
</component>
</project> </project>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -128,16 +128,17 @@ USE_TZ = True
STATIC_URL = '/static/' STATIC_URL = '/static/'
TINYMCE_JS_URL = "https://cdn.tiny.cloud/1/no-api-key/tinymce/5.1.4-66/tinymce.min.js" TINYMCE_JS_URL = "https://cdn.tiny.cloud/1/r9o35nobg5gdj46hhxw3ohwbjh4yct23kx405ozckt8fj2k2/tinymce/5.1.4-66/tinymce.min.js"
TINYMCE_DEFAULT_CONFIG = { TINYMCE_DEFAULT_CONFIG = {
'height' : 500, 'height' : 500,
'plugins': "image,imagetools,media,codesample,link,code", 'skin': 'oxide-dark',
'cleanup_on_startup': True, 'branding': False,
'content_css': 'dark',
'plugins': "image,imagetools,media,codesample,link,code,wordcount",
'menubar': False, 'menubar': False,
'toolbar': "styleselect |undo redo | bold italic | alignleft aligncenter alignright | link image media codesample code", 'contextmenu': "cut, copy, link, media ",
'toolbar': "styleselect | undo redo | bold italic underline superscript subscript| fontselect fontsizeselect forecolor backcolor | alignleft aligncenter alignright | link image media codesample code",
'image_caption': True, 'image_caption': True,
'image_advtab': True, 'image_advtab': True
'custom_undo_redo_levels': 10,
'file_browser_callback' : "myFileBrowser"
} }

View File

@ -1,6 +1,7 @@
Testowe Readme do projektu BestNotes Demo dostępne pod adresem: http://bestnotes.pythonanywhere.com/
Dane do logowanie:
Testowa zmiana Email: admin
Hasło: admin
# Run Webdriver.IO tests locally # Run Webdriver.IO tests locally
To run WebdriverIO tests locally, just execute: To run WebdriverIO tests locally, just execute:

Some files were not shown because too many files have changed in this diff Show More