Skip to content

Commit

Permalink
Dec summary update
Browse files Browse the repository at this point in the history
  • Loading branch information
Grant-Archibald-MS committed Dec 24, 2024
1 parent 650b969 commit 13a58ad
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 4 deletions.
6 changes: 6 additions & 0 deletions roles-and-responsibilities/business-stakeholders.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,9 @@ The following [discussions](../discussion) could be of interest
| Discussion | Description |
|------------|-------------|
[Building a Sustainability Model](../discussion/building-a-sustainability-model.md) | In the fast-paced world of software development, the initial rush of quickly building and deploying a solution can be exhilarating. However, the true challenge lies in keeping your great idea alive and ensuring its sustainability over time. This discussion explores how to build a sustainability model that not only keeps your solution relevant but also engages the community and stakeholders in the process. | [Link](https://github.com/Grant-Archibald-MS/powerfuldev-testing/issues/5)

The following context setting articles

| Topic | Description |
|------------|-------------|
| [The Strategic Importance of Automated Testing from a CXO Perspective](/context/strategic-importance-of-automated-testing-from-a-cxo-perspective.md) | Automated testing is not just a technical necessity but a strategic imperative for modern enterprises. From a CXO perspective, the implementation of automated testing frameworks can significantly enhance business outcomes, safeguard investments, and drive sustainable growth. Here’s a detailed look at why automated testing is crucial from a business standpoint, with a specific focus on the Power Apps Test Engine and how it addresses common challenges.
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,13 @@ def render(context)
survey.onValueChanged.add(function (survey, options) {
var currentPageIndex = survey.currentPageNo;
var currentVisible = survey.currentPage.visibleIndex
var visiblePages = survey.visiblePageCount;
survey.pages.forEach(function (page, index) {
if (index > currentPageIndex && index < visiblePages - 1) {
page.questions.forEach(function (question) {
question.clearValue();
});
if (page.visibleIndex > currentVisible) {
page.questions.forEach(function (question) {
question.clearValue();
});
}
});
});
Expand Down
32 changes: 32 additions & 0 deletions site/_posts/2024-12-24-end-of-december-updates.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: "End of December 2024 Updates"
categories:
- Updates
tags:
- PowerPlatform
- AutomatedTesting
---

As the team looks to take some time off over the holiday season providing you with a list of recent updates to the site last the last update for [Weekly Update: Week of 2nd of December, 2024](/powerfuldev-testing/updates/2024/12/09/weekly-update/)

- [Added Journey Map](/powerfuldev-testing/context/journey-map) - Add context on Adoption Stages, Common Blockers and possible mitigations with an interactive [Assessment](/powerfuldev-testing/context/journey-map-assessment) to guide you along this path
- Interactive Assessments - Added a new set of interactive assessments to help you get started and to assist your journey in adopting Automated testing of the Power Platform
- Technical Path - New [Simulation](/powerfuldev-testing/learning/10-using-simulations) and [Localization](/powerfuldev-testing/learning/11-localization) modules

## New Articles

The following new articles where published:

- [The Strategic Importance of Automated Testing from a CXO Perspective](/powerfuldev-testing/context/strategic-importance-of-automated-testing-from-a-cxo-perspective) - Automated testing is not just a technical necessity but a strategic imperative for modern enterprises. From a CXO perspective, the implementation of automated testing frameworks can significantly enhance business outcomes, safeguard investments, and drive sustainable growth. Here’s a detailed look at why automated testing is crucial from a business standpoint, with a specific focus on the Power Apps Test Engine and how it addresses common challenges.
- [Testing Localized Power Apps](/powerfuldev-testing/context/testing-localized-power-app) - Discussion on testing of localized Power Apps with a related learning module
- [Deeper Dive Test Engine Layers](/powerfuldev-testing/context/deep-dive-testengine-layers) - A technical discussion and overview of the technical components and layers that make up the Test Engine

## Assessments

We have started on the following assessments and will continue to refine and improve them in 2025.

- [Getting Started Assessment](/powerfuldev-testing/context/getting-started) - This assessment will help you get started by identifying your role and aligning you with the appropriate learning path and getting started reading.
- [Business Learning Path](/powerfuldev-testing/learning/business-path) - Each learning module provides a set of self guided learning modules to help set the context for learning aimed an Business personas
- [Architecture Learning Path](/powerfuldev-testing/learning/architecture) - Each learning module provides a set of self guided learning modules to help set the context for learning aimed at Architect personas

These assessments are part of our ongoing efforts to create a more interactive and personalized learning experience. By conditionally showing content based on user responses and providing self-assessment opportunities, we aim to enhance user engagement and ensure that learners can access the most relevant and useful information. Additionally, directing users to related content for further reading helps in building a more comprehensive and in-depth understanding of the topics covered.

0 comments on commit 13a58ad

Please sign in to comment.