diff options
| author | James Bligh <618250+blighj@users.noreply.github.com> | 2022-12-07 09:56:00 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-07 10:56:00 +0100 |
| commit | e44d348c99f0a449180399045ac54b3909121a03 (patch) | |
| tree | d808d453195d7c206bc2094313e8c7d8b7c499a5 /tests/staticfiles_tests/project/documents/cached/module_test.js | |
| parent | 9ac97e7eb5a74f813012715c7598c8608e78e178 (diff) | |
Fixed #32319 -- Added ES module support to ManifestStaticFilesStorage.
Co-authored-by: James Bligh <james.bligh@silvercloudhealth.com>
Diffstat (limited to 'tests/staticfiles_tests/project/documents/cached/module_test.js')
| -rw-r--r-- | tests/staticfiles_tests/project/documents/cached/module_test.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/staticfiles_tests/project/documents/cached/module_test.js b/tests/staticfiles_tests/project/documents/cached/module_test.js new file mode 100644 index 0000000000..219372f891 --- /dev/null +++ b/tests/staticfiles_tests/project/documents/cached/module_test.js @@ -0,0 +1,5 @@ +export const testConst = "test"; +export const firstConst = "first"; +export const secondConst = "second"; +export var firstVar1 = "test_1"; +export var SecondVar2 = "test_2"; |
