mirror of https://github.com/usememos/memos.git
* skeleton of postgres skeleton * Adding Postgres specific db schema sql * user test passed * memo store test passed * tag is working * update user setting test done * activity test done * idp test passed * inbox test done * memo_organizer, UNTESTED * memo relation test passed * webhook test passed * system setting test passed * passed storage test * pass resource test * migration_history done * fix memo_relation_test * fixing server memo_relation test * passes memo relation server test * paess memo test * final manual testing done * final fixes * final fixes cleanup * sync schema * lint * lint * lint * lint * lint |
||
|---|---|---|
| .. | ||
| README.md | ||
| activity_test.go | ||
| idp_test.go | ||
| inbox_test.go | ||
| memo_relation_test.go | ||
| memo_test.go | ||
| resource_test.go | ||
| storage_test.go | ||
| store.go | ||
| store_test.go | ||
| system_setting_test.go | ||
| tag_test.go | ||
| user_setting_test.go | ||
| user_test.go | ||
| webhook_test.go | ||
README.md
Store tests
How to test store with MySQL?
- Create a database in your MySQL server.
- Run the following command with two environment variables set:
DRIVER=mysql DSN=root@/memos_test go test -v ./test/store/...
DRIVERshould be set tomysql.DSNshould be set to the DSN of your MySQL server.