summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2020-07-22 21:10:19 +0200
committerGitHub <noreply@github.com>2020-07-22 21:10:19 +0200
commit1df5ddb696b01cb959ebebb12ad80b3b16c9fadf (patch)
tree60a642267a502f6c45e7a205db7d5a6ac4f2cf47 /docs
parentba74f7a83bd66906279726d44fcacdcd0f773ca7 (diff)
downloadwiki-1df5ddb696b01cb959ebebb12ad80b3b16c9fadf.tar.gz
wiki-1df5ddb696b01cb959ebebb12ad80b3b16c9fadf.tar.bz2
wiki-1df5ddb696b01cb959ebebb12ad80b3b16c9fadf.zip
Update keira3-internals.md
Diffstat (limited to 'docs')
-rw-r--r--docs/keira3-internals.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/keira3-internals.md b/docs/keira3-internals.md
index 71c0084..7fe1e9a 100644
--- a/docs/keira3-internals.md
+++ b/docs/keira3-internals.md
@@ -38,7 +38,7 @@ More specifically, we have:
- **Integration tests**. It's all the `*.integration.spec.ts` file, they also run with `ng test`, together with the unit tests.
You can see the integration tests of Keira3 almost like a set of e2e tests, the main difference is that all the DB interactions are mocked.
- The difference between unit tests and integration test is: in unit tests we test units by mocking all their dependencies, while in integration tests we test "big pieces" of Keira3 together. Mostly used to test the editors.
+ The difference between unit tests and integration test is: in unit tests we test units by mocking all their dependencies, while in integration tests we test "big pieces" of Keira3 together (mocking only the DB). Mostly used to test the editors.
- **E2E tests**. We have a tiny set of e2e tests based on [Spectron](https://www.electronjs.org/spectron). For example, to check the sqlite integration.