Skip to content

Commit

Permalink
tests: switch to assert's strict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR authored and MohammadYounes committed Jan 25, 2021
1 parent 8467e91 commit 38bfef4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/cli.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-env mocha */
'use strict'
const assert = require('assert')
const assert = require('assert').strict
const spawn = require('child_process').spawn
const fs = require('fs')
const bin = require('../package.json').bin.rtlcss
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-env mocha */
'use strict'
const assert = require('assert')
const assert = require('assert').strict
const rtlcss = require('..')
const tests = {
'# Background:': require('./data/background.js'),
Expand Down

0 comments on commit 38bfef4

Please sign in to comment.