mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 12:34:57 +01:00
4218b132f9
- Some tests for textbox
34 lines
738 B
TypeScript
34 lines
738 B
TypeScript
/**
|
|
* Testing Et2Textbox input / values
|
|
*/
|
|
|
|
import {assert, fixture} from "@open-wc/testing";
|
|
import {html} from "lit-html";
|
|
import {Et2Textbox} from "../Et2Textbox";
|
|
|
|
describe("Textbox input / values", () =>
|
|
{
|
|
// Reference to component under test
|
|
let element : Et2Textbox;
|
|
|
|
// Setup run before each test
|
|
beforeEach(async() =>
|
|
{
|
|
// Create an element to test with, and wait until it's ready
|
|
element = await fixture<Et2Textbox>(html`
|
|
<et2-textbox></et2-textbox>
|
|
`);
|
|
});
|
|
|
|
it("Takes a value", () =>
|
|
{
|
|
/*
|
|
Complains about set_value() being missing?
|
|
let test_value = "test value";
|
|
debugger;
|
|
element.set_value(test_value);
|
|
assert(document.querySelector('input').should.have.text(test_value))
|
|
|
|
*/
|
|
})
|
|
}); |