Found font! Also tests and styling

This commit is contained in:
Melody Becker 2024-09-23 17:09:19 +02:00
parent 23aefa268a
commit 83b45a5e46
36 changed files with 616 additions and 415 deletions

View file

@ -1,26 +1,18 @@
import { module, test } from 'qunit';
import { setupRenderingTest } from 'frontend-reactive/tests/helpers';
import { render } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
import { module, test } from "qunit";
import { setupRenderingTest } from "frontend-reactive/tests/helpers";
import { render } from "@ember/test-helpers";
import { hbs } from "ember-cli-htmlbars";
module('Integration | Component | page/header', function (hooks) {
setupRenderingTest(hooks);
module("Integration | Component | page/header", function (hooks) {
setupRenderingTest(hooks);
test('it renders', async function (assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
test("it renders", async function (assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
await render(hbs`<Page::Header />`);
await render(hbs`<Page::Header />`);
assert.dom().hasText('');
// Template block usage:
await render(hbs`
<Page::Header>
template block text
</Page::Header>
`);
assert.dom().hasText('template block text');
});
assert.dom().hasText("");
// TODO: Add tests
});
});

View file

@ -1,26 +1,18 @@
import { module, test } from 'qunit';
import { setupRenderingTest } from 'frontend-reactive/tests/helpers';
import { render } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
import { module, test } from "qunit";
import { setupRenderingTest } from "frontend-reactive/tests/helpers";
import { render } from "@ember/test-helpers";
import { hbs } from "ember-cli-htmlbars";
module('Integration | Component | page/left-sidebar', function (hooks) {
setupRenderingTest(hooks);
module("Integration | Component | page/left-sidebar", function (hooks) {
setupRenderingTest(hooks);
test('it renders', async function (assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
test("it renders", async function (assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
await render(hbs`<Page::LeftSidebar />`);
await render(hbs`<Page::LeftSidebar />`);
assert.dom().hasText('');
// Template block usage:
await render(hbs`
<Page::LeftSidebar>
template block text
</Page::LeftSidebar>
`);
assert.dom().hasText('template block text');
});
assert.dom().hasText("");
// TODO: Add tests
});
});