We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67b70ea commit e806d17Copy full SHA for e806d17
1 file changed
tests/CacheTest.php
@@ -75,6 +75,9 @@ function render(Tokenizer $tokenizer, AbstractCache ...$directives): string
75
76
$directives[] = new NeverCache();
77
expect(render($tokenizer, ...$directives))->toBe("private no-store");
78
+
79
+ $directives[] = new Revalidate(RevalidationEnum::EveryRequest);
80
+ expect(render($tokenizer, ...$directives))->toBe("private no-store");
81
});
82
83
it('can handle public/private', function () {
0 commit comments