ahabhgk
|
5091d37d42
|
fix: failed to resolve promise when eager import a dynamic cjs
|
2024-04-30 17:42:04 +08:00 |
Tobias Koppers
|
a4825654eb
|
upgrade jest
|
2018-07-10 16:02:02 +02:00 |
Tobias Koppers
|
023d4ca945
|
add more test cases
|
2018-05-29 00:45:39 +02:00 |
Tobias Koppers
|
a926a19715
|
create better namespace objects
avoid using Object.assign (fixes #7162)
|
2018-05-03 12:55:00 +02:00 |
Bazyli Brzóska
|
b579658d22
|
Merge branch 'profiling-race' into jest
# Conflicts:
# lib/debug/ProfilingPlugin.js
# test/ConfigTestCases.test.js
# test/DependenciesBlockVariable.unittest.js
# test/Examples.test.js
# test/ExternalModule.unittest.js
# test/HotTestCases.test.js
# test/Schemas.lint.js
# test/WebEnvironmentPlugin.unittest.js
# test/cases/mjs/non-mjs-namespace-object-lazy/index.js
# test/cases/runtime/module-caching/index.js
# test/compareLocations.unittest.js
# test/configCases/library/1-use-library/index.js
# test/configCases/plugins/define-plugin/index.js
# yarn.lock
|
2018-03-07 21:56:06 +01:00 |
Tobias Koppers
|
8bf15740bb
|
CJS fake namespace object contains exports now
#6576
|
2018-02-26 19:11:53 +01:00 |
Bazyli Brzóska
|
5a8083a930
|
migrate should to expect, part 1
used regexps:
([\(\)a-zA-Z0-9\."'/ +{}\[\]=\-,:?_!]+)\.should\.be\.eql
➡️
expect($1).toBe
expect\(([\(\)a-zA-Z0-9\."'/ +{}\[\]=\-,:?_!]+)\)\.toBe\(\[
➡️
expect($1).toEqual([
expect\(([\(\)a-zA-Z0-9\."'/ +{}\[\]=\-,:?_!]+)\)\.toBe\(\{
➡️
expect($1).toEqual({
|
2018-01-26 22:51:03 +01:00 |
Tobias Koppers
|
515a07adbf
|
fix non-harmony import() handling for `null`
|
2017-12-04 15:49:34 +01:00 |
Tobias Koppers
|
3803c8ad4e
|
handle non-esm correctly in import()
return namespace object in normal import() and context import()
add namespaceObject flag to ContextModule options
change tests for updated behavior
|
2017-12-04 12:58:32 +01:00 |