Skip to content

Commit

Permalink
fix(fast-element): revert prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Aug 4, 2020
1 parent 2e0a1b1 commit 57e7b2d
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions packages/web-components/fast-element/src/controller.spec.ts
Expand Up @@ -8,20 +8,12 @@ import { DOM } from "./dom";
import { css } from "./styles";

describe("The Controller", () => {
const templateA = html`
a
`;
const templateB = html`
b
`;
const templateA = html`a`;
const templateB = html`b`;
const cssA = "class-a { color: red; }";
const stylesA = css`
${cssA}
`;
const stylesA = css`${cssA}`;
const cssB = "class-b { color: blue; }";
const stylesB = css`
${cssB}
`;
const stylesB = css`${cssB}`;

function createController(
config: Omit<PartialFASTElementDefinition, "name"> = {},
Expand Down

0 comments on commit 57e7b2d

Please sign in to comment.