forked from fluid-project/uio-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fluid-projectGH-32: Finish writing tests and clean up
- Loading branch information
Showing
29 changed files
with
481 additions
and
3,075 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Copyright The UIO+ copyright holders | ||
* See the AUTHORS.md file at the top-level directory of this distribution and at | ||
* https://github.com/fluid-project/uio-plus/blob/main/AUTHORS.md | ||
* | ||
* Licensed under the BSD 3-Clause License. You may not use this file except in | ||
* compliance with this license. | ||
* | ||
* You may obtain a copy of the license at | ||
* https://github.com/fluid-project/uio-plus/blob/main/LICENSE.txt | ||
*/ | ||
|
||
/* global uioPlus */ | ||
|
||
"use strict"; | ||
|
||
uioPlus.prefsEditor(".uioPlus", { | ||
auxiliarySchema: { | ||
terms: { | ||
// adjust paths | ||
templatePrefix: "../lib/infusion/src/framework/preferences/html", | ||
messagePrefix: "../lib/infusion/src/framework/preferences/messages", | ||
localTemplatePrefix: "../templates", | ||
localMessagePrefix: "../messages" | ||
} | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<title>UIO+ prefs editor tests</title> | ||
|
||
<link rel="stylesheet" media="screen" href="../../../node_modules/infusion/tests/lib/qunit/css/qunit.css" /> | ||
<link rel="stylesheet" href="../../../node_modules/infusion/tests/lib/qunit/addons/composite/qunit-composite.css"> | ||
|
||
<script src="../../../node_modules/infusion/dist/infusion-all.js"></script> | ||
<script src="../../../node_modules/infusion/tests/lib/qunit/js/qunit.js"></script> | ||
<script src="../../../node_modules/infusion/tests/test-core/jqUnit/js/jqUnit.js"></script> | ||
<script src="../../../node_modules/infusion/tests/test-core/jqUnit/js/jqUnit-browser.js"></script> | ||
<script src="../../../node_modules/sinon-chrome/bundle/sinon-chrome.min.js"></script> | ||
<script src="../../../node_modules/sinon/pkg/sinon.js"></script> | ||
<script src="../../../src/js/webInjection.js"></script> | ||
|
||
<!-- Required to send coverage data at the end of the test run on this page --> | ||
<script src="/testem.js"></script> | ||
<script src="/coverage/client/coverageSender.js"></script> | ||
|
||
<script src="../js/webInjectionTests.js"></script> | ||
</head> | ||
|
||
<body id="body"> | ||
<h1 id="qunit-header">UIO+ prefs editor tests</h1> | ||
<h2 id="qunit-banner"></h2> | ||
<div id="qunit-testrunner-toolbar"></div> | ||
<h2 id="qunit-userAgent"></h2> | ||
<ol id="qunit-tests"></ol> | ||
<!-- Test Markup --> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.