Select the types of activity you want to include in your feed.
1// SPDX-License-Identifier: Apache-2.0 2// SPDX-FileCopyrightText: 2023 The Gleam contributors 3 4import gleeunit 5import gleeunit/should 6 7pub fn main() { 8 gleeunit.main() 9} 10 11// gleeunit test functions end in `_test` 12pub fn hello_world_test() { 13 1 14 |> should.equal(1) 15}