We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0af1273 commit 8512329Copy full SHA for 8512329
1 file changed
framework/traits/trait-llms-unit-test-case-base.php
@@ -3,7 +3,7 @@
3
* Mock Request methods
4
*
5
* @since 1.5.0
6
- * @version 3.3.2
+ * @version 4.0.0
7
*/
8
9
include_once 'trait-llms-unit-test-mock-requests.php';
@@ -51,11 +51,14 @@ trait LLMS_Unit_Test_Case_Base {
51
* @since 1.7.0 Initailize the `$cookies` property.
52
* @since 1.14.0 Add access to logs class.
53
* @since 3.0.0 Renamed from `setUp()` for WP core compat.
54
+ * @since 4.0.0 Automatically skips qualifying API integration tests.
55
56
* @return void
57
58
public function set_up() {
59
60
+ $this->skip_api_integration_test();
61
+
62
parent::set_up();
63
64
$this->cookies = LLMS_Tests_Cookies::instance();
0 commit comments