UI test for setting bckg and color of buttons inside dialogs

This commit is contained in:
zh-m
2016-11-30 15:25:09 +02:00
parent 825d577621
commit 35c48b30e6
4 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { alert } from "ui/dialogs";
export function onTap() {
var options = {
title: "Race selection",
message: "Race chosen: Unicorn",
okButtonText: "OK"
};
alert(options).then(() => {
console.log("Race chosen!");
});
}