Best Python code snippet using slash
bundles.bzl
Source:bundles.bzl
1"""2Describe all the output bundles in the zone.js npm package3by mapping the bundle name to the source location.4"""5_DIR = "//packages/zone.js/lib:"6ES5_GLOBAL_BUNDLES = {7 "zone": _DIR + "browser/rollup-legacy-main",8 "zone-mix": _DIR + "mix/rollup-mix",9 "zone-node": _DIR + "node/rollup-main",10 "zone-testing-node-bundle": _DIR + "node/rollup-test-main",11}12ES5_BUNDLES = {13 "async-test": _DIR + "testing/async-testing",14 "fake-async-test": _DIR + "testing/fake-async",15 "long-stack-trace-zone": _DIR + "zone-spec/long-stack-trace",16 "proxy": _DIR + "zone-spec/proxy",17 "zone-patch-rxjs-fake-async": _DIR + "rxjs/rxjs-fake-async",18 "sync-test": _DIR + "zone-spec/sync-test",19 "task-tracking": _DIR + "zone-spec/task-tracking",20 "wtf": _DIR + "zone-spec/wtf",21 "zone-error": _DIR + "common/error-rewrite",22 "zone-legacy": _DIR + "browser/browser-legacy",23 "zone-bluebird": _DIR + "extra/bluebird",24 "zone-patch-canvas": _DIR + "browser/canvas",25 "zone-patch-cordova": _DIR + "extra/cordova",26 "zone-patch-electron": _DIR + "extra/electron",27 "zone-patch-fetch": _DIR + "common/fetch",28 "jasmine-patch": _DIR + "jasmine/jasmine",29 "zone-patch-jsonp": _DIR + "extra/jsonp",30 "webapis-media-query": _DIR + "browser/webapis-media-query",31 "mocha-patch": _DIR + "mocha/mocha",32 "webapis-notification": _DIR + "browser/webapis-notification",33 "zone-patch-promise-test": _DIR + "testing/promise-testing",34 "zone-patch-resize-observer": _DIR + "browser/webapis-resize-observer",35 "webapis-rtc-peer-connection": _DIR + "browser/webapis-rtc-peer-connection",36 "zone-patch-rxjs": _DIR + "rxjs/rxjs",37 "webapis-shadydom": _DIR + "browser/shadydom",38 "zone-patch-socket-io": _DIR + "extra/socket-io",39 "zone-patch-user-media": _DIR + "browser/webapis-user-media",40 "zone-testing": _DIR + "testing/zone-testing",41 "zone-testing-bundle": _DIR + "browser/rollup-legacy-test-main",42}43ES2015_BUNDLES = {44 "zone-evergreen": _DIR + "browser/rollup-main",45 "zone-evergreen-testing-bundle": _DIR + "browser/rollup-test-main",...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!