mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
17 lines
464 B
JavaScript
17 lines
464 B
JavaScript
moduleForComponent("text-field", {needs: []});
|
|
|
|
test("renders correctly with no properties set", function() {
|
|
var component = this.subject();
|
|
equal(component.get('type'), "text");
|
|
});
|
|
|
|
test("support a placeholder", function() {
|
|
sandbox.stub(I18n, "t").returnsArg(0);
|
|
|
|
var component = this.subject({
|
|
placeholderKey: "placeholder.i18n.key"
|
|
});
|
|
|
|
equal(component.get('type'), "text");
|
|
equal(component.get('placeholder'), "placeholder.i18n.key");
|
|
});
|