Jeff Scott
Jeff Scott
Did this support get added?
Yeah I have the JavaScript file via CDN. All the functionality of it seems to work fine. Now that I know that animation is supposed to work I can dig...
Unless I'm not understanding, I think you mixed up in your funkytown results.
@jennifer-shehane yes you're correct, I should have been more clear. I created a branch where the cypress tests work. https://github.com/Lamden/wallet/tree/cypress-works You can "npm run test-firstrun-create" to run a test. This...
@jennifer-shehane Hey, I went a step further and refactored the Monaco Editor import out to it's own module. I can now load or not load the Monaco Editor: https://github.com/Lamden/wallet/blob/master/src/svelte/components/Monaco.svelte With...
@bahmutov Hey, sorry I didn't see your response there. cypress open does open the browser and show my test cases. Clicking on one of them opens a new window. I...
@jennifer-shehane yes, as I stated above that is the issue. I refactored the code to be able to do that. I have no idea why cypress does not like this...
@StuartFarmer are we merging dev with master? Or am I using dev going forwards?
So I've learned that this type of structure is a "Generics" structure. Looks like I need to create an Anypointer for "Text". I cannot find any documentation on how that...
This was the solution: ``` let keyMessage = new capnp.Message().initRoot(capnp.Text); keyMessage.set(0, 'foo') this.kwargEntries.get(0).setKey(keyMessage) ```