mirror of
https://github.com/documize/community.git
synced 2025-08-09 07:25:23 +02:00
Add missing html head meta tags
This commit is contained in:
parent
08fad01c6f
commit
1a0f9f5cd9
2 changed files with 6 additions and 1 deletions
|
@ -10,10 +10,12 @@ moduleForAcceptance('Acceptance | /');
|
||||||
test('visiting /', function(assert) {
|
test('visiting /', function(assert) {
|
||||||
visit('/');
|
visit('/');
|
||||||
|
|
||||||
|
return pauseTest();
|
||||||
|
|
||||||
// setup mirage for /api/public/meta -> { allowAnonymousAccess: false}
|
// setup mirage for /api/public/meta -> { allowAnonymousAccess: false}
|
||||||
|
|
||||||
|
|
||||||
andThen(function() {
|
andThen(function() {
|
||||||
assert.equal(currentURL(), '/login');
|
assert.equal(currentURL(), '/auth/login');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
<title>Documize Tests</title>
|
<title>Documize Tests</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta property="dbname" content="{{.DBname}}" />
|
||||||
|
<meta property="dbhash" content="{{.DBhash}}" />
|
||||||
|
<meta name="author" content="Documize" />
|
||||||
|
|
||||||
{{content-for "head"}}
|
{{content-for "head"}}
|
||||||
{{content-for "test-head"}}
|
{{content-for "test-head"}}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue