Skip to content

Commit

Permalink
refactor(test): add license header
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-ema committed Nov 20, 2024
1 parent 1afcdec commit 92c1d11
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test/unit/settings.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
// Zero-Clause BSD
//
// Permission to use, copy, modify, and/or distribute this software for
// any purpose with or without fee is hereby granted.
//
// THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
// WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE
// FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
// DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
// AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
// OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.


import { expect, test, describe, beforeEach } from "bun:test";
import settings, { setOptions } from "../../src/settings.js";


describe("setOptions", () => {
const oldSettings = structuredClone(settings);
beforeEach(() => {
Expand Down

0 comments on commit 92c1d11

Please sign in to comment.