From 614fb64e5930e350ec2e65dd66e7bd55c7c7b44f Mon Sep 17 00:00:00 2001 From: Ryan Zimmerman Date: Tue, 28 Apr 2020 16:14:55 -0400 Subject: [PATCH] Fix linting --- test/custom-resolve.js | 6 +++--- test/import.js | 6 +++--- test/plugins.js | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/test/custom-resolve.js b/test/custom-resolve.js index 77c8b2b3..2ab3e88a 100644 --- a/test/custom-resolve.js +++ b/test/custom-resolve.js @@ -5,12 +5,12 @@ import path from "path" import test from "ava" import postcss from "postcss" -// internal tooling -import checkFixture from "./helpers/check-fixture" - // plugin import atImport from ".." +// internal tooling +import checkFixture from "./helpers/check-fixture" + test.serial("should accept file", checkFixture, "custom-resolve-file", { resolve: () => path.resolve("test/fixtures/imports/custom-resolve-1.css"), }) diff --git a/test/import.js b/test/import.js index e99d36c9..ad36328c 100644 --- a/test/import.js +++ b/test/import.js @@ -6,12 +6,12 @@ import path from "path" import test from "ava" import postcss from "postcss" -// internal tooling -import checkFixture from "./helpers/check-fixture" - // plugin import atImport from ".." +// internal tooling +import checkFixture from "./helpers/check-fixture" + test("should import stylsheets", checkFixture, "simple") test("should not import a stylsheet twice", checkFixture, "no-duplicate") diff --git a/test/plugins.js b/test/plugins.js index b96fed01..f5664cb0 100644 --- a/test/plugins.js +++ b/test/plugins.js @@ -2,12 +2,12 @@ import test from "ava" import postcss from "postcss" -// internal tooling -import checkFixture from "./helpers/check-fixture" - // plugin import atImport from ".." +// internal tooling +import checkFixture from "./helpers/check-fixture" + test("should apply plugins to root", t => { const atRules = [] const rules = []