Skip to content
Snippets Groups Projects

add code from patch #6

4 unresolved threads

Closes #3144600

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
18 18
19 /**
20 * Use this inside a #cache array to add cache contexts.
21 */
22 const CONTEXTS = 'contexts';
23
24 /**
25 * Use this inside a #cache array to specify cache max age.
26 */
27 const MAX_AGE = 'max-age';
28
29 /**
30 * Use this inside a #cache array to add cache tags.
31 */
32 const TAGS = 'tags';
33
  • 483 483 $this->assertEquals('Cache context!Cache tag!Asset!Placeholder!barstoolNested!Cached nested!', trim($output), 'Expected HTML generated.');
    484 484 $this->assertEquals(['child.cache_context'], $test_element['#cache']['contexts'], 'Expected cache contexts found.');
    485 485 $this->assertEquals(['child:cache_tag'], $test_element['#cache']['tags'], 'Expected cache tags found.');
    486 // Test the constants for the #cache keys
  • 637 637 $this->renderer->renderInIsolation($build);
    638 638
    639 639 $this->assertEqualsCanonicalizing(['languages:language_interface', 'theme', 'user'], $build['#cache']['contexts']);
    640 // Test the constants for the #cache keys
    Please register or sign in to reply
    Loading