mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 15:12:51 +08:00
18 lines
307 B
JavaScript
18 lines
307 B
JavaScript
|
|
||
|
require(__dirname).test({
|
||
|
xml : "<span>Welcome,</span> to monkey land",
|
||
|
expect : [
|
||
|
["opentag", {
|
||
|
"name": "SPAN",
|
||
|
"attributes": {}
|
||
|
}],
|
||
|
["text", "Welcome,"],
|
||
|
["closetag", "SPAN"],
|
||
|
["text", " to monkey land"],
|
||
|
["end"],
|
||
|
["ready"]
|
||
|
],
|
||
|
strict : false,
|
||
|
opt : {}
|
||
|
});
|