Convert FieldTypeTest into a Kernel test
1 unresolved thread
1 unresolved thread
Closes #3414481
Merge request reports
Activity
46 $this->drupalCreateContentType(['type' => 'article']); 62 NodeType::create([ 63 'type' => 'article', 64 'name' => 'Article', 65 ])->save(); 47 66 48 67 // Create two nodes. 49 68 for ($i = 0; $i < 2; $i++) { 50 $this->nodes[] = $this->drupalCreateNode( 51 [ 52 'type' => 'article', 53 'body' => [ 54 [ 55 'value' => $this->randomMachineName(42), 56 'format' => filter_default_format(), 57 'summary' => $this->randomMachineName(), Note that this test didn't use the
'summary'
nor theformat
field in any way/shape/form, so I removed those.Edited by spokje
Please register or sign in to reply