refactor: consolidate all events in Events.js (#3772)

This will allow us to break all dependency cycles that were forcing
us to put many things in a single file (e.g. ExecutionContext and
ElementHandle).
This commit is contained in:
Andrey Lushnikov
2019-01-14 19:57:05 -08:00
committed by GitHub
parent 71edfc779b
commit 4e9e3bc614
17 changed files with 181 additions and 151 deletions

View File

@@ -1,7 +1,3 @@
class Foo {
}
Foo.Events = {
Start: 'start',
Finish: 'finish',
};