We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to create a link between an API and the associated test cases. Caption should be possible through a special tag
Proposal:
/** * @gpf:sameas _gpfWebTagCreateFunction * @since 0.2.1 * @gpf:sample DIV */ gpf.web.createTagFunction = _gpfWebTagCreateFunction;
it("supports tree building (parameters)", function () { // @gpf:sample DIV var div = gpf.web.createTagFunction("div"), span = gpf.web.createTagFunction("span"), tree = div({className: "test1"}, "Hello ", span({className: "test2"}, "World!")); assert(tree.toString() === "<div class=\"test1\">Hello <span class=\"test2\">World!</span></div>"); });
The text was updated successfully, but these errors were encountered:
ArnaudBuchholz
No branches or pull requests
We need to create a link between an API and the associated test cases.
Caption should be possible through a special tag
Proposal:
The text was updated successfully, but these errors were encountered: