aboutsummaryrefslogtreecommitdiff
path: root/src/test/fixtures.zig
blob: 8733a4e688ccc9ad96fe8df28eaafdf455f6b7b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
const std = @import("std");

pub const fixtures = std.ComptimeStringMap([]u8, .{
    .{ "package.json", @embedFile("./fixtures/package.json") },
    .{ "tsconfig.json", @embedFile("./fixtures/tsconfig.json") },
    .{ "simple-component.js", @embedFile("./fixtures/simple-component.js") },
    .{ "simple-component.tsx", @embedFile("./fixtures/simple-component.tsx") },
    .{ "simple-component.tsx", @embedFile("./fixtures/simple-component.tsx") },
});