Skip to content

Commit

Permalink
remove bad file
Browse files Browse the repository at this point in the history
  • Loading branch information
omarluq committed Nov 23, 2023
1 parent c075e78 commit fd10c28
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ dist-ssr
*.sw?
package-lock.json
yarn.lock
results.xml
.jest-stare
1 change: 0 additions & 1 deletion report.json

This file was deleted.

51 changes: 51 additions & 0 deletions test-results/jest/results.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites name="jest tests" tests="21" failures="0" errors="0" time="1.063">
<testsuite name="camelize" errors="0" failures="0" skipped="0" timestamp="2023-11-23T03:20:39" time="0.596" tests="4">
<testcase classname="camelize should correctly camelize testString" name="camelize should correctly camelize testString" time="0.001">
</testcase>
<testcase classname="camelize should correctly camelize TestString" name="camelize should correctly camelize TestString" time="0">
</testcase>
<testcase classname="camelize should correctly camelize testString" name="camelize should correctly camelize testString" time="0">
</testcase>
<testcase classname="camelize should correctly camelize TestString" name="camelize should correctly camelize TestString" time="0">
</testcase>
</testsuite>
<testsuite name="useStore" errors="0" failures="0" skipped="0" timestamp="2023-11-23T03:20:40" time="0.356" tests="10">
<testcase classname="useStore should subscribe to stores and call update methods on value changes" name="useStore should subscribe to stores and call update methods on value changes" time="0.001">
</testcase>
<testcase classname="useStore should allow direct access to store values on the controller" name="useStore should allow direct access to store values on the controller" time="0">
</testcase>
<testcase classname="useStore should allow direct access to store instances on the controller" name="useStore should allow direct access to store instances on the controller" time="0">
</testcase>
<testcase classname="useStore should clean up subscriptions when controller disconnects" name="useStore should clean up subscriptions when controller disconnects" time="0">
</testcase>
<testcase classname="useStore should add a getter for the store value to the controller" name="useStore should add a getter for the store value to the controller" time="0">
</testcase>
<testcase classname="useStore should add a getter for the store instance to the controller" name="useStore should add a getter for the store instance to the controller" time="0">
</testcase>
<testcase classname="useStore should add an update method to the controller" name="useStore should add an update method to the controller" time="0">
</testcase>
<testcase classname="useStore should notify each controller when the shared store&apos;s value is updated by any controller" name="useStore should notify each controller when the shared store&apos;s value is updated by any controller" time="0">
</testcase>
<testcase classname="useStore should call the callback with the current value when a function is passed to set" name="useStore should call the callback with the current value when a function is passed to set" time="0.001">
</testcase>
<testcase classname="useStore should update the store&apos;s value with the return value of the callback" name="useStore should update the store&apos;s value with the return value of the callback" time="0">
</testcase>
</testsuite>
<testsuite name="Store" errors="0" failures="0" skipped="0" timestamp="2023-11-23T03:20:40" time="0.069" tests="7">
<testcase classname="Store should initialize with the correct value" name="Store should initialize with the correct value" time="0.001">
</testcase>
<testcase classname="Store should update the value correctly" name="Store should update the value correctly" time="0">
</testcase>
<testcase classname="Store should notify subscribers when value changes" name="Store should notify subscribers when value changes" time="0.001">
</testcase>
<testcase classname="Store should stop notifying unsubscribed callbacks" name="Store should stop notifying unsubscribed callbacks" time="0">
</testcase>
<testcase classname="Store should not notify subscribers when value is the same" name="Store should not notify subscribers when value is the same" time="0">
</testcase>
<testcase classname="Store should not notify subscribers when filter returns false" name="Store should not notify subscribers when filter returns false" time="0">
</testcase>
<testcase classname="Store should call the callback with the current value when a function is passed to set" name="Store should call the callback with the current value when a function is passed to set" time="0">
</testcase>
</testsuite>
</testsuites>

0 comments on commit fd10c28

Please sign in to comment.