Skip to content

Commit 2b6b539

Browse files
committed
Test with typescript server instead of memestra
1 parent 615658c commit 2b6b539

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

atest/05_Features/Diagnostics.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ Resource ../Keywords.robot
99

1010
*** Test Cases ***
1111
Diagnostics with deprecated tag have strike-through decoration
12-
Wait Until Page Contains Element css:.cm-lsp-diagnostic[title*="Use new_func instead"] timeout=25s
12+
Wait Until Page Contains Element css:.cm-lsp-diagnostic[title*="is deprecated"] timeout=25s
1313
Page Should Contain Element css:.cm-lsp-diagnostic-tag-Deprecated

atest/examples/Diagnostic.ipynb

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,12 @@
5555
"metadata": {},
5656
"outputs": [],
5757
"source": [
58-
"from deprecated import deprecated\n",
59-
"\n",
60-
"\n",
61-
"@deprecated('Use new_func instead.')\n",
62-
"def old_func():\n",
63-
" pass\n",
64-
"\n",
65-
"\n",
66-
"old_func"
58+
"%%javascript\n",
59+
"/**\n",
60+
" * @deprecated\n",
61+
" */\n",
62+
"function oldFunc() {}\n",
63+
"oldFunc"
6764
]
6865
}
6966
],

requirements/github-actions.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,3 @@ dependencies:
3737
- robotframework >=4
3838
- robotframework-seleniumlibrary
3939
- python-lsp-server
40-
- pip:
41-
- git+https://github.com/krassowski/pyls-memestra.git@add-deprecated-tag

0 commit comments

Comments
 (0)