File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
#### 2.2.3
4
4
5
+ * [ Yii2] Improvements:
6
+ * Added ` init ` part to initialize Yii app for unit and acceptance testing.
7
+ * added ` entryScript ` and ` entryUrl ` config values for acceptance testing.
8
+ * Fixtures support: ` haveFixtures ` , ` grabFixtures ` methods.
9
+ * Yii logs to be printed in debug mode.
10
+ * added ` amOnRoute ` method.
11
+ * added ` amloggedInAs ` method.
12
+ * added ` grabComponent ` method.
13
+ * added ` seeEmailIsSent ` , ` grabLastSentEmail ` , etc and email part.
14
+ * assetManager disabled for unit/functional tests.
5
15
* Fixed ` @example ` to ` @group ` defined in group files. By @eXorus . Fixes #3278
16
+ * Fixed timing values in output. Closes #3331
17
+ * Fixed merging module configs. Closes #3292
18
+ * [ Recorder Extension] Fixes saving of files on windows and with using examples.
19
+ * [ DataFactory] Fixed loading factories twice by @samusenkoiv . See #3314
6
20
* [ Laravel5] Added ` run_database_migrations ` configuration option. By @janhenkgerritsen .
7
21
* [ Laravel5] Added ` callArtisan ` method. By @janhenkgerritsen .
8
22
* [ Laravel5] Added ` disableModelEvents() ` method and ` disable_model_events ` configuration option. Fixes #2897 .
9
23
* [ REST] Allow objects in files array #3298
10
24
* [ ZF2] Added addServiceToContainer method
11
25
* [ ZendExpressive] allow instances of UploadedFile in files array
12
26
* [ ZF2] Added addServiceToContainer method
27
+ * Don't fail test validation when exec function is disabled by @Naktialda
13
28
14
29
#### 2.2.2
15
30
Original file line number Diff line number Diff line change 36
36
*
37
37
* ### Parts
38
38
*
39
+ * By default all available methods are loaded, but you can specify parts to select only needed actions and avoid conflicts.
40
+ *
39
41
* * `init` - use module only for initialization (for acceptance tests).
40
- * * `orm` - include only haveRecord/grabRecord/seeRecord/dontSeeRecord actions
42
+ * * `orm` - include only `haveRecord/grabRecord/seeRecord/dontSeeRecord` actions.
43
+ * * `fixtures` - use fixtures inside tests with `haveFixtures/grabFixture/grabFixtures` actions.
44
+ * * `email` - include email actions `seeEmailsIsSent/grabLastSentEmail/...`
41
45
*
42
46
* ### Example (`functional.suite.yml`)
43
47
*
You can’t perform that action at this time.
0 commit comments