Skip to content

Commit

Permalink
test: fix missing imported value
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed Sep 13, 2020
1 parent c8013a5 commit 4a79691
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ import bcd from "mdn-browser-compat-data";
import type { Identifier } from "mdn-browser-compat-data/types";
import { css } from "mdn-data";

import { CSSPrefixFlags } from "../src";
const enum CSSPrefixFlags {
"-webkit-" = 1 << 0,
"-moz-" = 1 << 1,
"-ms-" = 1 << 2,
}

export const nonObsoleteProperties = Object.keys(css.properties).filter(
(property) => {
Expand Down

0 comments on commit 4a79691

Please sign in to comment.