Skip to content

Commit d6ff187

Browse files
authored
feat: adds supplemental lesson 7 and demo app (#832)
* feat: adds supplemental lesson 7 and demo app Signed-off-by: Anthony D. Mays <[email protected]> * chore: shortens demo folder name Signed-off-by: Anthony D. Mays <[email protected]> * chore: shortens demo folder name Signed-off-by: Anthony D. Mays <[email protected]> * docs: adds instructions for running the demo Signed-off-by: Anthony D. Mays <[email protected]> * chore: adds a11y automated tests Signed-off-by: Anthony D. Mays <[email protected]> * chore: adjust accessibility tests Signed-off-by: Anthony D. Mays <[email protected]> * tests: resolves remaining e2e test errors Signed-off-by: Anthony D. Mays <[email protected]> --------- Signed-off-by: Anthony D. Mays <[email protected]>
1 parent b97cd4d commit d6ff187

37 files changed

+18213
-1
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ coverage
3636
# nyc test coverage
3737
.nyc_output
3838

39+
# Lighthouse CI
40+
.lighthouseci/
41+
3942
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
4043
.grunt
4144

@@ -48,6 +51,11 @@ bower_components
4851
# Compiled binary addons (https://nodejs.org/api/addons.html)
4952
build/Release
5053

54+
# Playwright
55+
test-results/
56+
playwright-report/
57+
playwright/.cache/
58+
5159
# Dependency directories
5260
node_modules/
5361
jspm_packages/

.playwright-mcp/after-reload.png

159 KB
Loading
159 KB
Loading
161 KB
Loading
161 KB
Loading
161 KB
Loading
159 KB
Loading

slides/src/Slides/Lessons/Supplemental7.js

Lines changed: 457 additions & 0 deletions
Large diffs are not rendered by default.

slides/src/Slides/Lessons/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import Supplemental3 from "./Supplemental3.js";
3030
import Supplemental4 from "./Supplemental4.js";
3131
import Supplemental5 from "./Supplemental5.js";
3232
import Supplemental6 from "./Supplemental6.js";
33+
import Supplemental7 from "./Supplemental7.js";
3334

3435
export {
3536
Lesson00,
@@ -63,6 +64,7 @@ export {
6364
Supplemental3,
6465
Supplemental4,
6566
Supplemental5,
66-
Supplemental6
67+
Supplemental6,
68+
Supplemental7
6769
};
6870

slides/src/Slides/Slides.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ function Slides() {
4545
<${lessons.Supplemental4} />
4646
<${lessons.Supplemental5} />
4747
<${lessons.Supplemental6} />
48+
<${lessons.Supplemental7} />
4849
</div>`;
4950
}
5051

0 commit comments

Comments
 (0)