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

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

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

    var input = '"foo" instance of empty-sequence()';
    var expected = '"foo" instance of empty-sequence()';

    $("#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