Skip to content

Commit

Permalink
add snail + fix file test
Browse files Browse the repository at this point in the history
  • Loading branch information
thuy3nana committed Dec 23, 2024
1 parent 71125e0 commit 6ed8af4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Set a default color, size, pet type, position, and theme when you open a Pet Pan

* Pet Color: black, brown, green, yellow, gray, purple, red, white, orange
* Pet Size: nano, small, medium, large
* Pet Type: cat, chicken, crab, clippy, cockatiel, dog, horse, mod, rocky, rubber duck, snake, totoro, turtle, zappy
* Pet Type: cat, chicken, crab, clippy, cockatiel, dog, horse, mod, rocky, rubber duck, snake, totoro, turtle, zappy, snail

.. image:: _static/screenshot-2.gif
:alt: Usage screenshot
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@
"snake",
"totoro",
"turtle",
"zappy"
"zappy",
"snail"
],
"default": "cat",
"description": "Pet type",
Expand Down
2 changes: 1 addition & 1 deletion src/test/suite/panel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ suite('Pets Test Suite', () => {
collection.push(testPetElement);
assert.strictEqual(collection.locate('Jerry'), testPetElement);

collection.remove('Jerry');
collection.remove(testPetElement);
assert.strictEqual(collection.locate('Jerry'), undefined);
});

Expand Down

0 comments on commit 6ed8af4

Please sign in to comment.