mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-05 11:49:31 +00:00
eabe73ddc0
* begin setup front-end test environment with selenium * run migrations before tests * use https for tests
7 lines
186 B
Python
7 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)
|