eabe73ddc0
* begin setup front-end test environment with selenium * run migrations before tests * use https for tests
8 lines
186 B
Python
8 lines
186 B
Python
#!/usr/bin/python3
|
|
from utils import Browser
|
|
|
|
class InstanceName(Browser):
|
|
def test_name_in_title(self):
|
|
self.get("/")
|
|
self.assertIn("plume-test", self.driver.title)
|