summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/utils/tests/isMinified.spec.js
blob: 1c49f96737418be996a4a2147a7a56ca20f92d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */

import { isMinified } from "../isMinified";
import { makeMockSourceWithContent } from "../test-mockup";

describe("isMinified", () => {
  it("no indents", () => {
    const sourceWithContent = makeMockSourceWithContent(
      undefined,
      undefined,
      undefined,
      "function base(boo) {\n}"
    );
    expect(isMinified(sourceWithContent, sourceWithContent.content)).toBe(true);
  });
});