Skip to content

Commit e948ba8

Browse files
authored
Merge pull request #1119 from ember-learn/melsumner/add-polaris-mascots
Adds Polaris mascots
2 parents 8f11f01 + dc66290 commit e948ba8

File tree

6 files changed

+29
-11
lines changed

6 files changed

+29
-11
lines changed

data/tomster/polaris-tomster.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Polaris
3+
date: 2024-06-01T09:01:00Z
4+
url: null
5+
image: polaris-tomster.png
6+
tags:
7+
- all
8+
- tomster
9+
---

data/tomster/polaris-zoey.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Polaris
3+
date: 2024-06-01T09:01:00Z
4+
url: null
5+
image: polaris-zoey.png
6+
tags:
7+
- all
8+
- zoey
9+
---
391 KB
Loading
427 KB
Loading

tests/acceptance/mascots-test.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ module('Acceptance | mascots', function (hooks) {
3333

3434
const mascots = findAll('[data-test-mascot]');
3535

36-
assert.strictEqual(mascots.length, 76, 'The user sees 10 mascots.');
36+
assert.strictEqual(mascots.length, 78, 'The user sees 10 mascots.');
3737

3838
assert
3939
.dom('[data-test-field="Name"]', mascots[0])
40-
.hasText('Europe Tomster', 'The user sees the correct first mascot.');
40+
.hasText('Polaris', 'The user sees the correct first mascot.');
4141

4242
assert
4343
.dom('[data-test-field="Name"]', mascots[mascots.length - 1])
@@ -56,11 +56,11 @@ module('Acceptance | mascots', function (hooks) {
5656

5757
let mascots = findAll('[data-test-mascot]');
5858

59-
assert.strictEqual(mascots.length, 66, 'The user sees 7 mascots.');
59+
assert.strictEqual(mascots.length, 67, 'The user sees 7 mascots.');
6060

6161
assert
6262
.dom('[data-test-field="Name"]', mascots[0])
63-
.hasText('Europe Tomster', 'The user sees the correct first mascot.');
63+
.hasText('Polaris', 'The user sees the correct first mascot.');
6464

6565
assert
6666
.dom('[data-test-field="Name"]', mascots[mascots.length - 1])
@@ -77,11 +77,11 @@ module('Acceptance | mascots', function (hooks) {
7777

7878
mascots = findAll('[data-test-mascot]');
7979

80-
assert.strictEqual(mascots.length, 17, 'The user sees 6 mascots.');
80+
assert.strictEqual(mascots.length, 18, 'The user sees 6 mascots.');
8181

8282
assert
8383
.dom('[data-test-field="Name"]', mascots[0])
84-
.hasText('Pride', 'The user sees the correct first mascot.');
84+
.hasText('Polaris', 'The user sees the correct first mascot.');
8585

8686
assert
8787
.dom('[data-test-field="Name"]', mascots[mascots.length - 1])
@@ -101,11 +101,11 @@ module('Acceptance | mascots', function (hooks) {
101101

102102
let mascots = findAll('[data-test-mascot]');
103103

104-
assert.strictEqual(mascots.length, 66, 'The user sees 7 mascots.');
104+
assert.strictEqual(mascots.length, 67, 'The user sees 7 mascots.');
105105

106106
assert
107107
.dom('[data-test-field="Name"]', mascots[0])
108-
.hasText('Europe Tomster', 'The user sees the correct first mascot.');
108+
.hasText('Polaris', 'The user sees the correct first mascot.');
109109

110110
assert
111111
.dom('[data-test-field="Name"]', mascots[mascots.length - 1])
@@ -125,11 +125,11 @@ module('Acceptance | mascots', function (hooks) {
125125

126126
mascots = findAll('[data-test-mascot]');
127127

128-
assert.strictEqual(mascots.length, 17, 'The user sees 6 mascots.');
128+
assert.strictEqual(mascots.length, 18, 'The user sees 6 mascots.');
129129

130130
assert
131131
.dom('[data-test-field="Name"]', mascots[0])
132-
.hasText('Pride', 'The user sees the correct first mascot.');
132+
.hasText('Polaris', 'The user sees the correct first mascot.');
133133

134134
assert
135135
.dom('[data-test-field="Name"]', mascots[mascots.length - 1])

tests/integration/components/mascots/mascot-list-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ module('Integration | Component | mascots/mascot-list', function (hooks) {
2222

2323
assert
2424
.dom('[data-test-mascot]')
25-
.exists({ count: 76 }, 'We see 10 mascots.');
25+
.exists({ count: 78 }, 'We see 10 mascots.');
2626
});
2727
});

0 commit comments

Comments
 (0)