Update plugin tests, refs #834

pull/844/head
Simon Willison 2020-06-13 11:15:33 -07:00
rodzic ae99af2536
commit d60bd6ad13
2 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -64,6 +64,7 @@ EXPECTED_PLUGINS = [
"extra_template_vars",
"permission_allowed",
"render_cell",
"startup",
],
},
{

Wyświetl plik

@ -127,4 +127,5 @@ def startup(datasette):
async def inner():
result = await datasette.get_database().execute("select 1 + 1")
datasette._startup_hook_calculation = result.first()[0]
return inner