Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions samples/copilotstudiokit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,7 @@ dotnet tool install --global Microsoft.PowerApps.CLI.Tool

5. Granted System Administrator or System Customizer roles as documented in [Microsoft Learn](https://learn.microsoft.com/power-apps/maker/model-driven-apps/privileges-required-customization#system-administrator-and-system-customizer-security-roles)

6. Git Client has been installed. For example using [GitHub Desktop](https://desktop.github.com/download/) or the [Git application](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git). For example on Windows you could use the following command

```pwsh
winget install --id Git.Git -e --source winget
```

7. The Azure CLI has been [installed](https://learn.microsoft.com/cli/azure/install-azure-cli)

Expand All @@ -65,6 +61,11 @@ pac application install --environment-id 00000000-0000-0000-0000-000000000000 --

## Verification

To ensure your environment is ready:
```powershell
.\validate.ps1
```

> NOTE: If at any stage you find that a component is not installed, you may need to restart you command line session to verify that the component has been installed

1. Verify you have .Net 8.0 SDK installed
Expand Down Expand Up @@ -167,10 +168,6 @@ code .
"userAuth": "storagestate",
"runInstall": true,
"installPlaywright": true,
"compile": true,
"record": false,
"runTests": true,
"debugTests": false,
"useStaticContext": false,
"getLatest": false,
"testScripts": {
Expand Down
1,130 changes: 691 additions & 439 deletions samples/copilotstudiokit/RunTests.ps1

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions samples/copilotstudiokit/testSettings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ headless: false
recordVideo: true
extensionModules:
enable: true
allowPowerFxNamespaces:
- Preview
parameters:
enableDataverseFunctions: true
timeout: 1200000
Expand Down
Loading