Joel Kuzmarski
Joel Kuzmarski
@eddiemcconkie For the no-compiler-required functions I would imagine they would still just do the import for use behind the scenes. If this is the strategy I'm not sure there is...
> Tbf onMount, on destroy, before/after/onNavigate are all first-class framework features that have to be imported I've only ever used SvelteKit, not svelte alone. Didn't think about it when you...
Feel free to mark my comments as off-topic. Prolly should have started a different thread. Just thought it sounded like a plausible idea to put everything svelte-related behind `$` and...
Not sure, but maybe try: ```js before(done => { browser.clickLink('#link', done); }); ``` Or maybe: ```js before(function() { return browser.clickLink('#link'); }); ``` Or something like: https://github.com/assaf/zombie/blob/master/test/angular_compat_test.js#L48-L50
Maybe related to #1102
Linking related PR https://github.com/marko-js/tags-api-preview/pull/29 (for compile error in readme example) Linking related PR https://github.com/marko-js/cli/pull/214 (updates `npm init` command in cli readme)
@DylanPiercey looking like the primary issues with A) the readme example needing to be updated to be `` and B) with the npm command needing to look like `npm init...
- Default Attribute - https://markojs.com/try-online/?gist=4ff21c1e8917b687b4bbb67d883179e6 - Attribute Method Shorthands - https://markojs.com/try-online/?gist=ab09ef5a31f2a8d610cc14f355d01825 - Tag Variables - https://markojs.com/try-online/?gist=4bbb70bb2e7085cab377c0820a40760b (wip)