Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Sep 1, 2021
1 parent 367f021 commit ec72ec2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/babel-code-frame/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import stripAnsi from "strip-ansi";
import codeFrame, { codeFrameColumns } from "..";

describe("@babel/code-frame", function () {
test("basic usage", function () {
test.only("basic usage", function () {
const rawLines = ["class Foo {", " constructor()", "};"].join("\n");
expect(codeFrame(rawLines, 2, 16)).toEqual(
[
Expand Down
6 changes: 3 additions & 3 deletions packages/babel-highlight/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe("@babel/highlight", function () {
}

describe("highlight", function () {
describe("when colors are supported", function () {
describe.skip("when colors are supported", function () {
stubColorSupport(true);

it("highlights code", function () {
Expand Down Expand Up @@ -52,7 +52,7 @@ describe("@babel/highlight", function () {
});

describe("shouldHighlight", function () {
describe("when colors are supported", function () {
describe.skip("when colors are supported", function () {
stubColorSupport(true);

it("returns true", function () {
Expand All @@ -76,7 +76,7 @@ describe("@babel/highlight", function () {
});

describe("getChalk", function () {
describe("when colors are supported", function () {
describe.skip("when colors are supported", function () {
stubColorSupport(true);

describe("when forceColor is not passed", function () {
Expand Down

0 comments on commit ec72ec2

Please sign in to comment.