gecko-dev/devtools/client/webconsole/test/browser_webconsole_output_regexp.js
Julian Descottes 70997ce55a Bug 1319049 - fix RegExp previewer for worker debugging;r=ochameau
MozReview-Commit-ID: D8hRGV0MWoZ

--HG--
extra : rebase_source : 7b24311401b9cf7241eead84ca8b3c0f95f6a0cd
2016-12-19 10:58:08 +01:00

35 lines
780 B
JavaScript

/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
// Test the webconsole output for a regexp object.
"use strict";
const TEST_URI = "data:text/html;charset=utf8,<p>test regexp output";
var inputTests = [
// 0
{
input: "/foo/igym",
output: "/foo/gimy",
printOutput: "/foo/gimy",
inspectable: true,
},
];
function test() {
requestLongerTimeout(2);
Task.spawn(function* () {
let {tab} = yield loadTab(TEST_URI);
let hud = yield openConsole(tab);
return checkOutputForInputs(hud, inputTests);
}).then(finishUp);
}
function finishUp() {
inputTests = null;
finishTest();
}