I have a config attached to the window
object in /public/js/settings.js
file:
window.mySettings = {
foo: 1,
bar: 2,
}
I import these settings in a vuex store file baz.storage.js
in a vue project:
import settings from 'mySettings';
It all works except that jest doesn't understand this export:
Cannot find module 'mySettings' from 'baz.storage.js'
And so the whole jest suite fails.
If
/js/settings.js
is included in your page, you don't need import it in the baz.storage.js but make suresettings.js
is include at first.Eg:
settings.js
is added at first in the above example so thatwindow.mySettings
will be available for thescript2.js
andscript3.js
once you declared a variable in the
window
it is declared at the global scope and it can be accessed from all the other scripts.Eg: