aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/reportError.test.js
blob: e51f933092bc2541bc0d95e87d37bec359958d3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { it } from "bun:test";

it("reportError", () => {
  console.log("---BEGIN REPORT ERROR TEST--");
  // make sure we don't crash when given non-sensical types
  reportError(new Error("reportError Test!"));
  reportError(true);
  reportError(false);
  reportError(null);
  reportError(123);
  reportError(Infinity);
  reportError(NaN);
  reportError(-NaN);
  reportError("");
  reportError(new Uint8Array(1));
  reportError(new Uint8Array(0));
  reportError(new ArrayBuffer(0));
  reportError(new ArrayBuffer(1));
  reportError("string");
  reportError([]);
  reportError([123, null]);
  reportError({});
  reportError([{}]);
  console.log("---END REPORT ERROR TEST--");
});
Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/edge-functions/fixtures/prerender/src (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2023-06-05feat(tsconfigs): Enable allowJs in base preset (#7274)Gravatar Erika 3-2/+11
2023-06-05[ci] formatGravatar matthewp 5-7/+3
2023-06-05feat: remove experimental flag middleware (#7109)Gravatar Emanuele Stoppa 16-83/+45
2023-06-05[ci] formatGravatar Princesseuh 1-1/+1
2023-06-05fix(html): Export HTML components as default export so their type is valid JS...Gravatar Erika 4-9/+12
2023-06-05[ci] formatGravatar matthewp 1-1/+1
2023-06-05Stabilize inline stylesheets (#7180)Gravatar Arsh 5-34/+61
2023-06-05[ci] formatGravatar matthewp 33-202/+225
2023-06-05Redirects (#7067)Gravatar Matthew Phillips 70-319/+1733
2023-06-05Fixes cookies being set by middleware (#7294)Gravatar Matthew Phillips 6-1/+19
2023-06-05[ci] formatGravatar bluwy 3-6/+28
2023-06-05remove the white space after the doctype according to the property co… (#7242)Gravatar Jerry_wu 5-9/+18
2023-06-05Simplify Deno test (#7276)Gravatar Bjorn Lu 3-105/+37
2023-06-02[ci] release (#7278)create-astro@3.1.6Gravatar Houston (Bot) 3-6/+7
2023-06-02Add 'starlight' as template alias (#7277)Gravatar Nate Moore 2-3/+12
2023-06-02[ci] release (#7254)astro@2.5.7@astrojs/sitemap@1.3.3@astrojs/mdx@0.19.6@astrojs/markdoc@0.3.1Gravatar Houston (Bot) 25-56/+53
2023-06-02Run example check in parallel with 5 at most (#7275)Gravatar Bjorn Lu 3-5/+17
2023-06-02Fix Vitest with content collections (#7233)Gravatar Bjorn Lu 3-0/+54
2023-06-02Content collections: ignored underscore directories in file glob (#7268)Gravatar Ben Holmes 2-6/+23
2023-06-02[ci] formatGravatar bluwy 1-1/+1
2023-06-02fix(astro/core/app/node): support http2 requests (#7215)Gravatar Benjamin MENANT 2-3/+9
2023-06-02Parallel array rendering (#7136)Gravatar Johannes Spohr 5-16/+33
2023-06-02[ci] formatGravatar bluwy 1-8/+10
2023-06-02Fix sitemap filter (#7263)Gravatar André Alves 4-2/+54
2023-06-01Fix duplicate `semver minor` blocks (#7269)Gravatar Nate Moore 1-12/+11
2023-06-01fix: build fail upon have 'process.env' in *.md file. (#7257)Gravatar Thiti Yamsung 2-1/+8
2023-05-31[ci] formatGravatar bholmesdev 4-6/+5
2023-05-31Markdoc asset bleed, second try (#7185)Gravatar Ben Holmes 28-131/+653
2023-05-31Fix `semver minor` action (#7261)Gravatar Nate Moore 1-38/+36
2023-05-31Revert "feat(hybrid): unflag hybrid output (#7255)" (#7259)Gravatar Nate Moore 29-65/+139
2023-05-31[ci] formatGravatar natemoo-re 3-13/+8
2023-05-31feat(hybrid): unflag hybrid output (#7255)Gravatar Nate Moore 29-130/+61
2023-05-31Markdoc: strip HTML comments from output (#7224)Gravatar Ben Holmes 2-1/+13
2023-05-30Fix out-of-date example dependencies (#7248)Gravatar Ben Holmes 33-198/+211
2023-05-30[ci] release (#7190)astro@2.5.6@astrojs/webapi@2.2.0@astrojs/vue@2.2.1@astrojs/vercel@3.4.1@astrojs/sitemap@1.3.2@astrojs/react@2.2.1@astrojs/preact@2.2.1@astrojs/partytown@1.2.3@astrojs/mdx@0.19.5@astrojs/markdoc@0.3.0Gravatar Houston (Bot) 48-171/+216
2023-05-30Content collections - fix `.json` collection errors (#7246)Gravatar Ben Holmes 4-7/+52
2023-05-30[ci] formatGravatar bholmesdev 4-5/+5
2023-05-30Markdoc - remove `$entry` variable (#7244)Gravatar Ben Holmes 16-257/+217
2023-05-30Markdoc: new README for Markdoc nodes (#7225)Gravatar Ben Holmes 1-46/+85
2023-05-30[ci] formatGravatar MoustaphaDev 1-1/+1
2023-05-30fix: prioritize dynamic prerendered routes over dynamic server routes (#7235)Gravatar Happydev 6-19/+361
2023-05-30[ci] formatGravatar matthewp 1-5/+8
2023-05-30Bug 6672 (#7062)Gravatar wulinsheng123 10-0/+138