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 |