You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/2-issues.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ The shelter wants to begin pushing new features to the website. They want to sta
21
21
22
22
## Creating issues to manage feature requests
23
23
24
-
Our project needs two main updates. We want to make the updates to support development for our project, and add filtering capabilities for users to find the right dog. Let's create the issues for each of these. In the next few exercises we'll begin making the appropriate updates to our project to resolve these requests.
24
+
Our project needs two main updates. We want to make the updates to support development for our project, and add a flag showing availability for users to find the right dog. Let's create the issues for each of these. In the next few exercises we'll begin making the appropriate updates to our project to resolve these requests.
25
25
26
26
1. Return to the repository you created at the beginning of this workshop.
27
27
2. Select the **Issues** tab.
@@ -30,11 +30,11 @@ Our project needs two main updates. We want to make the updates to support devel
30
30
5. Select **Create more** at the bottom of the page to streamline the creation process.
31
31
6. Create new issues by adding the information indicated in the table below, selecting **Submit new issue** after creating each one:
| Define codespace | Create the necessary definitions for the codespace to enable cloud development|
36
+
| Implement testing | Create a workflow to automate testing for continuous integration|
37
+
| Add availability flag to dog list | Add the necessary code to display a flag for the status of each dog, and the tests for the new behavior|
38
38
39
39
> [!TIP]
40
40
> You can also save an issue by pressing <kbd>Ctl</kbd> - <kbd>Enter</kbd> (or <kbd>Cmd</kbd> - <kbd>Return</kbd> on a Mac) in the title or description fields.
Copy file name to clipboardExpand all lines: content/5-code.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ We've explored how we can use GitHub Copilot to explore our project and to provi
10
10
11
11
## Scenario
12
12
13
-
The website currently lists all dogs in the database. While this was appropriate when the shelter only had a few dogs, as time has gone on the number has grown and it's difficult for people to sift through who's available to adopt. The shelter has asked you to add filters to the website to allow a user to select a breed of dog and only display dogs which are available for adoption.
13
+
The website currently lists just the name and breed of the dog on the landing page. Users would like to see at a glance the adoption status so they don't get their hopes up only to discover a dog isn't available. You'll utilize Copilot to add the feature, as well as generate and run the tests to confirm the updates.
14
14
15
15
## Overview of this exercise
16
16
@@ -34,7 +34,7 @@ Let's ask Copilot to generate the code to add the feature and tests!
34
34
4. Use the following prompt to ask Copilot to generate the necessary code and tests to implement filtering:
35
35
36
36
```markdown
37
-
Update the website to allow for filtering of dogs by breed and adoption status. The page should update as filters are modified. Ensure both unit tests and end to end tests are created, and they all pass. If any tests are failing, make the necessary updates so they pass.
37
+
Let's update the site to have an adoption status flag for the dogs! Create the necessary tests and ensure they all pass.
0 commit comments