mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 08:56:17 -04:00
tests: Rename specs_list
to frontendTestSpecs
This commit is contained in:
parent
1be1b704f1
commit
aea2fb7448
3 changed files with 5 additions and 5 deletions
|
@ -24,6 +24,6 @@
|
|||
<script src="helper/ui.js"></script>
|
||||
<script src="helper/multipleUsers.js"></script>
|
||||
|
||||
<script src="specs_list.js"></script>
|
||||
<script src="frontendTestSpecs.js"></script>
|
||||
<script src="runner.js"></script>
|
||||
</html>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
/* global specs_list */
|
||||
/* global frontendTestSpecs */
|
||||
|
||||
$(() => {
|
||||
const stringifyException = (exception) => {
|
||||
|
@ -144,7 +144,7 @@ $(() => {
|
|||
require.setGlobalKeyPath('require');
|
||||
|
||||
const $body = $('body');
|
||||
for (const spec of specs_list.map((spec) => encodeURI(spec))) {
|
||||
for (const spec of frontendTestSpecs.map((spec) => encodeURI(spec))) {
|
||||
$body.append($('<script>').attr('src', spec.startsWith('/') ? spec : `specs/${spec}`));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue