This file contains hidden or 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
| web_add_auto_header("Upgrade-Insecure-Requests", | |
| "1"); | |
| web_reg_save_param_regexp( | |
| "ParamName=nonce", | |
| "RegExp=nonce=(.*?)&client_id", | |
| "Ordinal=1", | |
| SEARCH_FILTERS, | |
| "Scope=Headers", | |
| "RequestUrl=*/login*", |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> | |
| <id>bin</id> | |
| <baseDirectory>/</baseDirectory> | |
| <formats> | |
| <format>zip</format> | |
| </formats> | |
| <fileSets> | |
| <fileSet> | |
| <directory>${project.basedir}/src/main/resources/process.sh</directory> |
This file contains hidden or 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
| /* | |
| Author: Prateek | |
| Description: This is a casperjs automated test script for showing that, Clicking on the Stop button does not show the results of the cancelled cells | |
| */ | |
| //Test begins | |
| casper.test.begin(" After stopping the execution, for cancelled cells result is not displayed", 6, function suite(test) { | |
| var x = require('casper').selectXPath; | |
| var github_username = casper.cli.options.username; | |
| var github_password = casper.cli.options.password; |
This file contains hidden or 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
| casper.test.begin("Pre executed two or more R cells and Rmarkdown cells to be executed using Run All", 12, function suite(test) { | |
| var x = require('casper').selectXPath; | |
| var github_username = casper.cli.options.username; | |
| var github_password = casper.cli.options.password; | |
| var rcloud_url = casper.cli.options.url; | |
| var functions = require(fs.absolute('basicfunctions')); | |
| var input_code = "50+50" ; | |
| var expected_result = "100"; | |
| var errors = []; |