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
{ | |
"require": { | |
"behat/behat": "2.4.*@stable", | |
"behat/mink": "1.5.*@stable", | |
"behat/mink-goutte-driver": "*", | |
"behat/mink-extension": "*", | |
"behat/mink-selenium2-driver": "*" | |
} | |
} |
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
default: | |
paths: | |
features: features | |
bootstrap: %behat.paths.features%/bootstrap | |
extensions: | |
Behat\MinkExtension\Extension: | |
goutte: ~ | |
selenium2: ~ |
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
/** | |
* @When /^I search for "([^"]*)"$/ | |
*/ | |
public function iSearchFor($arg1) | |
{ | |
$this->fillField('Search Drupal.org', $arg1); | |
$this->pressButton('Search'); | |
} |
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
Feature: Drupal.org search | |
In order to find modules on Drupal.org | |
As a Drupal user | |
I need to be able to use Drupal.org search | |
@javascript | |
Scenario: Searching for "behat" | |
Given I go to "http://drupal.org" | |
When I search for "behat" | |
Then I should see "Behat Drupal Extension" |
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
node_modules/workshopper/util/makews.js exercises/menu.json |
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
{ | |
"name": "using-jquery-plugins-global", | |
"version": "1.0.0", | |
"dependencies": { | |
"jquery": "^2.1.3", | |
"tipso": "^1.0.2" | |
}, | |
"browser": { | |
"tipso": "./node_modules/tipso/src/tipso.js" | |
}, |
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
// This function is called immediately. The second function is passed in | |
// as the factory parameter to this function. | |
(function (factory) { | |
// If there is a variable named module and it has an exports property, | |
// then we're working in a Node-like environment. Use require to load | |
// the jQuery object that the module system is using and pass it in. | |
if(typeof module === "object" && typeof module.exports === "object") { | |
factory(require("jquery"), window, document); | |
} | |
// Otherwise, we're working in a browser, so just pass in the global |
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
{ | |
"name": "...", | |
"version": "...", | |
"browserify": { | |
"transform": [ "browserify-shim" ] | |
}, | |
"browserify-shim": { | |
"angular": "global:angular" | |
} | |
} |
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
module.exports = { | |
entry: '...', | |
output: {...}, | |
externals: { | |
react: "React" | |
} | |
} |
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
diff --git a/app/ui/browser/index.jsx b/app/ui/browser/index.jsx | |
index 4ab9a68..e2a5972 100644 | |
--- a/app/ui/browser/index.jsx | |
+++ b/app/ui/browser/index.jsx | |
@@ -20,6 +20,10 @@ import configureStore from './store/store'; | |
import rootReducer from './reducers'; | |
import Immutable from 'immutable'; | |
+import * as actions from './actions/main-actions'; | |
+ |
OlderNewer