diff options
| author | Farhan <farhanalirazaazeemi@gmail.com> | 2024-08-03 15:45:39 +0500 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-08-07 11:01:56 +0200 |
| commit | 6993c9d8c962503cd60a37ad7f9569c06c13516e (patch) | |
| tree | 8a00c509e77836a10e85420c00b6250f6c600046 /tests/staticfiles_tests/project/documents | |
| parent | fdc638bf4a35b5497d0b3b4faedaf552da792f99 (diff) | |
Fixed #35553 -- Handled import*as in HashedFilesMixin.
Diffstat (limited to 'tests/staticfiles_tests/project/documents')
| -rw-r--r-- | tests/staticfiles_tests/project/documents/cached/module.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/staticfiles_tests/project/documents/cached/module.js b/tests/staticfiles_tests/project/documents/cached/module.js index 7764e740d6..c56530aea6 100644 --- a/tests/staticfiles_tests/project/documents/cached/module.js +++ b/tests/staticfiles_tests/project/documents/cached/module.js @@ -2,6 +2,10 @@ import rootConst from "/static/absolute_root.js"; import testConst from "./module_test.js"; import * as NewModule from "./module_test.js"; +import*as m from "./module_test.js"; +import *as m from "./module_test.js"; +import* as m from "./module_test.js"; +import* as m from "./module_test.js"; import { testConst as alias } from "./module_test.js"; import { firstConst, secondConst } from "./module_test.js"; import { |
