We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8a831 commit b64cbf4Copy full SHA for b64cbf4
tests/FieldTest.php
@@ -107,6 +107,15 @@ public function it_can_create_datetime_field()
107
108
$field->minutesAvailable([1, 2]);
109
$this->assertEquals([1, 2], $field->opts['minutesAvailable']);
110
+
111
+ $field->keyInput(false);
112
+ $this->assertEquals(false, $field->getAttributes()['keyInput']);
113
114
+ $field->displayFormat('LLL');
115
+ $this->assertEquals('LLL', $field->getAttributes()['displayFormat']);
116
117
+ $field->wireFormat('LLL');
118
+ $this->assertEquals('LLL', $field->getAttributes()['wireFormat']);
119
}
120
121
/** @test */
0 commit comments