All Downloads are FREE. Search and download functionalities are using the official Maven repository.

static.codemirror.mode.xquery.test.testProcessingInstructions.js Maven / Gradle / Ivy

$(document).ready(function(){
  module("testProcessingInstructions");
  test("testProcessingInstructions", function() {
    expect(1);

    var input = 'data() instance of xs:string';
    var expected = 'data(<?target content?>) instance of xs:string';

    $("#sandbox").html('');
    var editor = CodeMirror.fromTextArea($("#editor")[0]);
    var result = $(".CodeMirror-lines div div pre")[0].innerHTML;

     equal(result, expected);
     $("#editor").html("");
  });
});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy