DEV: Move preload-store to discourse/lib/preload-store

It's only used inside Discourse so it needn't be its own module
This commit is contained in:
Robin Ward
2020-05-06 15:28:06 -04:00
parent 6c968b7945
commit 01929e3505
28 changed files with 29 additions and 33 deletions

View File

@@ -1,5 +1,5 @@
import { acceptance } from "helpers/qunit-helpers";
import PreloadStore from "preload-store";
import PreloadStore from "discourse/lib/preload-store";
acceptance("Account Created");

View File

@@ -1,6 +1,6 @@
import { acceptance } from "helpers/qunit-helpers";
import { setCustomHTML } from "discourse/helpers/custom-html";
import PreloadStore from "preload-store";
import PreloadStore from "discourse/lib/preload-store";
acceptance("CustomHTML set");

View File

@@ -1,5 +1,5 @@
import { acceptance } from "helpers/qunit-helpers";
import PreloadStore from "preload-store";
import PreloadStore from "discourse/lib/preload-store";
acceptance("Invite Accept", {
settings: {

View File

@@ -1,5 +1,5 @@
import { acceptance } from "helpers/qunit-helpers";
import PreloadStore from "preload-store";
import PreloadStore from "discourse/lib/preload-store";
import { parsePostData } from "helpers/create-pretender";
acceptance("Password Reset", {

View File

@@ -1,4 +1,4 @@
import PreloadStore from "preload-store";
import PreloadStore from "discourse/lib/preload-store";
/*jshint maxlen:10000000 */
PreloadStore.store("site", {

View File

@@ -1,4 +1,4 @@
import PreloadStore from "preload-store";
import PreloadStore from "discourse/lib/preload-store";
import { Promise } from "rsvp";
QUnit.module("preload-store", {