Skip to content

Commit

Permalink
Update all the stuff. (gruntjs#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR authored and vladikoff committed Sep 10, 2018
1 parent a4be5b5 commit 04014b2
Show file tree
Hide file tree
Showing 11 changed files with 461 additions and 464 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ language: node_js
node_js:
- "6"
- "8"
- "9"
- "10"

matrix:
fast_finish: true
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Please see the [Contributing to grunt](http://gruntjs.com/contributing) guide for information on contributing to this project.
Please see the [Contributing to grunt](https://gruntjs.com/contributing) guide for information on contributing to this project.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* grunt-contrib-qunit
* http://gruntjs.com/
* https://gruntjs.com/
*
* Copyright (c) 2016 "Cowboy" Ben Alman, contributors
* Licensed under the MIT license.
Expand Down Expand Up @@ -164,6 +164,6 @@ module.exports = function(grunt) {
grunt.registerTask('test', ['jshint', 'connect', 'qunit', 'shell', 'really-test']);

// By default, lint and run all tests.
grunt.registerTask('default', ['test', 'build-contrib']);
grunt.registerTask('default', ['test', 'contrib-ci:skipIfExists', 'contrib-core']);

};
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Getting Started

If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
If you haven't used [Grunt](https://gruntjs.com/) before, be sure to check out the [Getting Started](https://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](https://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

```shell
npm install grunt-contrib-qunit --save-dev
Expand All @@ -24,7 +24,7 @@ grunt.loadNpmTasks('grunt-contrib-qunit');
## Qunit task
_Run this task with the `grunt qunit` command._

You have chosen to write your unit tests using [QUnit](http://qunitjs.com/), you have written a
You have chosen to write your unit tests using [QUnit](https://qunitjs.com/), you have written a
html page which reports the summary and indivudual details of your unit
tests, you are happy with this but realize you miss the ability to have your
unit test suite run automatically each time you commit changes to your
Expand All @@ -43,7 +43,7 @@ the same suite from the command line interface.

This plugin defines one single task: `qunit`. Configure it in your `Gruntfile.js`, run it with the `grunt qunit` command.

Please read about specifying task targets, files and options in the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide.
Please read about specifying task targets, files and options in the grunt [Configuring tasks](https://gruntjs.com/configuring-tasks) guide.

When installed by npm, this plugin will automatically download and install a local
[Chrome][] binary within the `node_modules` directory of the [puppeteer][] library,
Expand Down Expand Up @@ -116,7 +116,7 @@ Arguments to be used when `puppeteer.launch()` is invoked. This may be useful fo
Type: `boolean`
Default: `false`

Fail a test when the global namespace is polluted. See the [QUnit cookbook](http://qunitjs.com/cookbook/#discussion-id170) for more information.
Fail a test when the global namespace is polluted. See the [QUnit cookbook](https://qunitjs.com/cookbook/#discussion-id170) for more information.

### Command line options

Expand Down Expand Up @@ -294,4 +294,4 @@ grunt.event.on('qunit.spawn', function (url) {

Task submitted by ["Cowboy" Ben Alman](http://benalman.com/)

*This file was generated on Sun Aug 12 2018 23:44:39.*
*This file was generated on Sat Sep 08 2018 11:37:49.*
8 changes: 3 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ environment:
platform: x86
- nodejs_version: "8"
platform: x86
NODE_NO_HTTP2: 1
- nodejs_version: "10"
platform: x86

install:
- ps: Install-Product node $env:nodejs_version $env:platform
Expand All @@ -18,10 +19,7 @@ install:
test_script:
# Output useful info for debugging
- node --version && npm --version
# We test multiple Windows shells because of prior stdout buffering issues
# filed against Grunt. https://github.com/joyent/node/issues/3584
- ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
- cmd: npm test
- npm test

build: off

Expand Down
2 changes: 1 addition & 1 deletion chrome/bridge.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* grunt-contrib-qunit
* http://gruntjs.com/
* https://gruntjs.com/
*
* Copyright (c) 2016 "Cowboy" Ben Alman, contributors
* Licensed under the MIT license.
Expand Down
2 changes: 1 addition & 1 deletion docs/qunit-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Arguments to be used when `puppeteer.launch()` is invoked. This may be useful fo
Type: `boolean`
Default: `false`

Fail a test when the global namespace is polluted. See the [QUnit cookbook](http://qunitjs.com/cookbook/#discussion-id170) for more information.
Fail a test when the global namespace is polluted. See the [QUnit cookbook](https://qunitjs.com/cookbook/#discussion-id170) for more information.

# Command line options

Expand Down
4 changes: 2 additions & 2 deletions docs/qunit-overview.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
You have chosen to write your unit tests using [QUnit](http://qunitjs.com/), you have written a
You have chosen to write your unit tests using [QUnit](https://qunitjs.com/), you have written a
html page which reports the summary and indivudual details of your unit
tests, you are happy with this but realize you miss the ability to have your
unit test suite run automatically each time you commit changes to your
Expand All @@ -17,7 +17,7 @@ the same suite from the command line interface.

This plugin defines one single task: `qunit`. Configure it in your `Gruntfile.js`, run it with the `grunt qunit` command.

Please read about specifying task targets, files and options in the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide.
Please read about specifying task targets, files and options in the grunt [Configuring tasks](https://gruntjs.com/configuring-tasks) guide.

When installed by npm, this plugin will automatically download and install a local
[Chrome][] binary within the `node_modules` directory of the [puppeteer][] library,
Expand Down
Loading

0 comments on commit 04014b2

Please sign in to comment.