No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
f51afa3
... +0 ...
aa9e5b9
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
12 | 12 | // variables, for example. |
|
13 | 13 | class Frame { |
|
14 | 14 | constructor(parent, isolateWrites) { |
|
15 | - | this.variables = {}; |
|
15 | + | this.variables = Object.create(null); |
|
16 | 16 | this.parent = parent; |
|
17 | 17 | this.topLevel = false; |
|
18 | 18 | // if this is true, writes (set) should never propagate upwards past |
aa9e5b9
f51afa3