This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
SHORTCUT="[Desktop Entry] | |
Name=Sublime Text 2 | |
Comment=Edit text files | |
Exec=/usr/local/sublime-text-2/sublime_text | |
Icon=/usr/local/sublime-text-2/Icon/128x128/sublime_text.png | |
Terminal=false | |
Type=Application | |
Encoding=UTF-8 | |
Categories=Utility;TextEditor;" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
marionette('testing b2g-desktop', { host: 'path/to/b2g-desktop', type: 'sync' }, function() { | |
var clientA = marionette.createClient({ /* profileOptions */ }); | |
var clientB = marionette.createClient({ /* profileOptions */ }); | |
test('test my thing', function() { | |
clientA.goUrl(); | |
clientB.goUrl(); | |
}); | |
}); |