FIX: Ran prettier on user-selector-test (#8700)

This commit is contained in:
Mark VanLandingham 2020-01-10 09:27:41 -08:00 committed by GitHub
parent 5898afaa73
commit 7ee09aa0d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ function paste(element, text) {
let e = new Event("paste");
e.clipboardData = { getData: () => text };
element.dispatchEvent(e);
};
}
componentTest("pasting a list of usernames", {
template: `{{user-selector usernames=usernames class="test-selector"}}`,