We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 714d34d commit 59838eeCopy full SHA for 59838ee
plotly/tests/test_optional/test_jupyter/test_jupyter.py
@@ -12,10 +12,17 @@
12
import subprocess
13
14
PATH_ROOT = path.dirname(__file__)
15
+PATH_NODE_MODULES = path.join(PATH_ROOT, 'node_modules')
16
PATH_FIXTURES = path.join(PATH_ROOT, 'fixtures')
17
PATH_JS_TESTS = path.join(PATH_ROOT, 'js_tests')
18
19
20
+class PlotlyJupyterTestDeps(TestCase):
21
+
22
+ def test_node_modules(self):
23
+ self.assertTrue(path.isdir(PATH_NODE_MODULES))
24
25
26
class Common(TestCase):
27
__test__ = False
28
name = None
0 commit comments