You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
Any specific things you need help with the tests? The structure should could be something like:
it("it should disable context menu items when file doesn't exist ",function(){// runs create a new file// opens context menu// checks that all the items are disabled});
it("it should enable context menu items when file does exist ", function () {
// runs create a new file and saves it
// opens context menu
// checks that all the items are enabled
});
For example check `DocumentCommandHandlers` tests to see how the working set can be manipulated.